diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2017-06-23 09:00:31 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-06-23 09:00:31 -0400 |
commit | d908893cfcebe5e7c16b3d9eded39b5303519c38 (patch) | |
tree | e87bf06ecfdfff360973af7fe6da0d875baf1bed /tests/test_process.py | |
parent | 03b7b258014e300f1974b9f5832ccd74e692cc29 (diff) | |
download | python-coveragepy-git-d908893cfcebe5e7c16b3d9eded39b5303519c38.tar.gz |
Jython 2.7.1rc3 needs
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 8a0f4e3b..6ec2758d 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -600,6 +600,9 @@ class ProcessTest(CoverageTest): if env.PY3 and sys.version_info < (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") # LANG=C forces getfilesystemencoding on Linux to 'ascii', which causes # failures with non-ascii file names. We don't want to make a real file # with strange characters, though, because that gets the test runners |