Skip to content

Commit d3c382a

Browse files
committed
Skip this on 3.8+
1 parent a2493d5 commit d3c382a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pytest_cov.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1100,7 +1100,7 @@ def test_run_target():
11001100

11011101
@pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
11021102
@pytest.mark.skipif('platform.python_implementation() == "PyPy"', reason="often deadlocks on PyPy")
1103-
@pytest.mark.skipif('sys.version_info[:2] == (3, 8)', reason="deadlocks on Python 3.8, see: https://bugs.python.org/issue38227")
1103+
@pytest.mark.skipif('sys.version_info[:2] >= (3, 8)', reason="deadlocks on Python 3.8, see: https://bugs.python.org/issue38227")
11041104
def test_multiprocessing_pool_terminate(testdir):
11051105
pytest.importorskip('multiprocessing.util')
11061106

0 commit comments

Comments
 (0)