summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-11-28 07:42:10 -0500
committerNed Batchelder <ned@nedbatchelder.com>2020-11-28 19:48:31 -0500
commit25ee95fef684685dd040130a4d4d24b7178bc678 (patch)
tree1317ef9c826ab89ab06b878fea30a694da9a4dda
parentbf479909ee9765fa3007360c12fb3b89906645f3 (diff)
downloadpython-coveragepy-git-25ee95fef684685dd040130a4d4d24b7178bc678.tar.gz
This test is picky about platforms
-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 7f772e31..249beb00 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -743,7 +743,7 @@ class ProcessTest(CoverageTest):
self.assertGreater(line_counts(data)['os.py'], 50)
@xfail(
- env.PYPY3 and ((7, 1, 1) <= env.PYPYVERSION < (7, 3)),
+ env.PYPY3 and (env.PYPYVERSION >= (7, 1, 1)) and env.LINUX,
"https://bitbucket.org/pypy/pypy/issues/3074"
)
def test_lang_c(self):