diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-31 11:23:01 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2019-12-31 11:58:08 -0500 |
commit | 957e6a6f17a9eb8eea51be972052fcd98ff7a2fd (patch) | |
tree | 459f7bfcef66c16640b4f434910894bb84b77c58 /tests/test_process.py | |
parent | 14b76135d39bbb11e42a49565396b13d020dd87a (diff) | |
download | python-coveragepy-git-957e6a6f17a9eb8eea51be972052fcd98ff7a2fd.tar.gz |
Adjust other env.PYPY tests to the latest way
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_process.py b/tests/test_process.py index 29fbfb35..3e12c108 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -745,9 +745,8 @@ class ProcessTest(CoverageTest): 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") - if env.PYPY and env.PY3 and env.PYPYVERSION[:3] >= (7, 1, 1): # pragma: obscure - # https://bitbucket.org/pypy/pypy/issues/3074/compile-fails-on-non-ascii-filename-if - self.skipTest("Avoid getfilesystemencoding problem on pypy3") + if env.PYPY3 and env.PYPYVERSION >= (7, 1, 1): # pragma: obscure + self.xfail("https://bitbucket.org/pypy/pypy/issues/3074") # 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 |