summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-02-20 12:03:12 -0500
committerNed Batchelder <ned@nedbatchelder.com>2018-02-20 12:03:12 -0500
commitcc7ed848cdaa8329edb503db686f3ee2b4be47ae (patch)
treef4af232f4d5a46f69699782bb21b23e27d2a739c /tests/test_process.py
parent9552e3d1c9f054203f577ef0ef697ef836d504b8 (diff)
downloadpython-coveragepy-git-cc7ed848cdaa8329edb503db686f3ee2b4be47ae.tar.gz
Pragma away some test code that won't be covered
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index 70329b59..85adcf47 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -767,7 +767,7 @@ class EnvironmentTest(CoverageTest):
self.assert_tryexecfile_output(out_cov, out_py)
def test_coverage_run_dir_is_like_python_dir(self):
- if sys.version_info == (3, 5, 4, 'final', 0):
+ if sys.version_info == (3, 5, 4, 'final', 0): # pragma: not covered
self.skipTest("3.5.4 broke this: https://bugs.python.org/issue32551")
with open(TRY_EXECFILE) as f:
self.make_file("with_main/__main__.py", f.read())