Skip to content

Commit a2493d5

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

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
@@ -1059,7 +1059,7 @@ def test_funcarg_not_active(testdir):
10591059
@pytest.mark.skipif("sys.version_info[0] < 3", reason="no context manager api on Python 2")
10601060
@pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
10611061
@pytest.mark.skipif('platform.python_implementation() == "PyPy"', reason="often deadlocks on PyPy")
1062-
@pytest.mark.skipif('sys.version_info[:2] == (3, 8)', reason="deadlocks on Python 3.8, see: https://bugs.python.org/issue38227")
1062+
@pytest.mark.skipif('sys.version_info[:2] >= (3, 8)', reason="deadlocks on Python 3.8+, see: https://bugs.python.org/issue38227")
10631063
def test_multiprocessing_pool(testdir):
10641064
pytest.importorskip('multiprocessing.util')
10651065

0 commit comments

Comments
 (0)