From 644ac5a7deb3933224a5ff6863e5b3d98362c2a8 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Wed, 19 Jan 2022 19:00:26 -0500 Subject: refactor(test): use xfail for tests that fail on specific versions of Python --- tests/test_process.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_process.py') diff --git a/tests/test_process.py b/tests/test_process.py index f13fe014..7558671b 100644 --- a/tests/test_process.py +++ b/tests/test_process.py @@ -552,7 +552,7 @@ class ProcessTest(CoverageTest): @pytest.mark.expensive @pytest.mark.skipif(not env.C_TRACER, reason="fullcoverage only works with the C tracer.") @pytest.mark.skipif(env.METACOV, reason="Can't test fullcoverage when measuring ourselves") - @pytest.mark.skipif( + @pytest.mark.xfail( (3, 11, 0, "alpha", 4) <= env.PYVERSION, reason="avoid 3.11 bug lineno==None: https://bugs.python.org/issue46389", ) -- cgit v1.2.1