summaryrefslogtreecommitdiff
blob: 6292672b619131ea4352f95154fd475bf510c99c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
diff --git a/tests/test_pytest_cov.py b/tests/test_pytest_cov.py
index e79e9aa..198478b 100644
--- a/tests/test_pytest_cov.py
+++ b/tests/test_pytest_cov.py
@@ -662,6 +662,7 @@ def test_fail(p):
     ])
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="Seems buggy on python3.8")
 @pytest.mark.skipif('sys.platform == "win32" or platform.python_implementation() == "PyPy"')
 def test_dist_combine_racecondition(testdir):
     script = testdir.makepyfile("""
@@ -1018,6 +1019,7 @@ def test_funcarg_not_active(testdir):
     assert result.ret == 0
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="https://bugs.python.org/issue38227")
 @pytest.mark.skipif("sys.version_info[0] < 3", reason="no context manager api on Python 2")
 @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
 @pytest.mark.skipif('platform.python_implementation() == "PyPy"', reason="often deadlocks on PyPy")
@@ -1059,6 +1061,7 @@ def test_run_target():
     assert result.ret == 0
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="https://bugs.python.org/issue38227")
 @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
 @pytest.mark.skipif('platform.python_implementation() == "PyPy"', reason="often deadlocks on PyPy")
 def test_multiprocessing_pool_terminate(testdir):
@@ -1141,6 +1144,7 @@ def test_run_target():
     assert result.ret == 0
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="https://bugs.python.org/issue38227")
 @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
 def test_multiprocessing_process(testdir):
     pytest.importorskip('multiprocessing.util')
@@ -1171,6 +1175,7 @@ def test_run_target():
     assert result.ret == 0
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="https://bugs.python.org/issue38227")
 @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
 def test_multiprocessing_process_no_source(testdir):
     pytest.importorskip('multiprocessing.util')
@@ -1201,6 +1206,7 @@ def test_run_target():
     assert result.ret == 0
 
 
+@pytest.mark.skipif("sys.hexversion >= 0x3080000", reason="https://bugs.python.org/issue38227")
 @pytest.mark.skipif('sys.platform == "win32"', reason="multiprocessing support is broken on Windows")
 def test_multiprocessing_process_with_terminate(testdir):
     pytest.importorskip('multiprocessing.util')