diff options
author | Hugo <hugovk@users.noreply.github.com> | 2018-06-19 07:27:00 -0400 |
---|---|---|
committer | Hugo <hugovk@users.noreply.github.com> | 2018-06-19 07:27:00 -0400 |
commit | a355099628a28b21f2e61600a84011cb1be32756 (patch) | |
tree | a403aebe9ebbc167189303b6a1b0e2edc826156d /tests/test_process.py | |
parent | 1bbfe7e938d0250a1bb777492f617e95349abc5d (diff) | |
download | python-coveragepy-git-a355099628a28b21f2e61600a84011cb1be32756.tar.gz |
Drop support for EOL 2.5, 2.6 and 3.3
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 7e55c77c..68262a57 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -659,9 +659,6 @@ class ProcessTest(CoverageTest): self.assertGreater(data.line_counts()['os.py'], 50) def test_lang_c(self): - if env.PY3 and env.PYVERSION < (3, 4): - # Python 3.3 can't compile the non-ascii characters in the file name. - self.skipTest("3.3 can't handle this test") if env.JYTHON: # Jython as of 2.7.1rc3 won't compile a filename that isn't utf8. self.skipTest("Jython can't handle this test") |