diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-19 19:00:26 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-01-19 19:00:26 -0500 |
commit | 644ac5a7deb3933224a5ff6863e5b3d98362c2a8 (patch) | |
tree | 8460a97e584ed57c1926ce73dcc390984e1c6429 /tests/test_process.py | |
parent | db7825a33067e5c0873250488ba0543968765abb (diff) | |
download | python-coveragepy-git-644ac5a7deb3933224a5ff6863e5b3d98362c2a8.tar.gz |
refactor(test): use xfail for tests that fail on specific versions of Python
Diffstat (limited to 'tests/test_process.py')
-rw-r--r-- | tests/test_process.py | 2 |
1 files changed, 1 insertions, 1 deletions
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", ) |