diff options
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 1217142a..9d534981 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -492,11 +492,6 @@ class MultiprocessingTest(CoverageTest): last_line = self.squeezed_lines(out)[-1] assert re.search(r"TOTAL \d+ 0 100%", last_line) - @pytest.mark.skipif( - ((3, 11, 0, "alpha", 4, 0) == env.PYVERSION), - #((3, 11, 0, "alpha", 4, 0) == env.PYVERSION) and not env.C_TRACER and env.METACOV, - reason="avoid a 3.11 bug: https://bugs.python.org/issue46389", - ) def test_multiprocessing_simple(self, start_method): nprocs = 3 upto = 30 @@ -511,11 +506,6 @@ class MultiprocessingTest(CoverageTest): start_method=start_method, ) - @pytest.mark.skipif( - ((3, 11, 0, "alpha", 4, 0) == env.PYVERSION), - #((3, 11, 0, "alpha", 4, 0) == env.PYVERSION) and not env.C_TRACER and env.METACOV, - reason="avoid a 3.11 bug: https://bugs.python.org/issue46389", - ) def test_multiprocessing_append(self, start_method): nprocs = 3 upto = 30 |