From 25ee95fef684685dd040130a4d4d24b7178bc678 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 28 Nov 2020 07:42:10 -0500 Subject: This test is picky about platforms --- tests/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- cgit v1.2.1