diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 11:09:18 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-01-14 11:09:18 -0500 |
commit | 2611e6484ce8009eb68c0eaa13714bbc1a525616 (patch) | |
tree | dea5ed4839813f0a9f2b7f806f5ec4bdf35a0e53 /tests/test_process.py | |
parent | 512fa0ed1419d1e51013fa706bb2b214c611bb52 (diff) | |
download | python-coveragepy-git-2611e6484ce8009eb68c0eaa13714bbc1a525616.tar.gz |
3.5.4 has a regression, so skip a test
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index b173c01d..8bf6c11b 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -705,6 +705,8 @@ 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): + 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()) |