diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-03-03 09:47:21 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-03-03 09:47:21 -0500 |
commit | 5f9fd32139fd0c54d025bb4c8c4132cd07ee29b0 (patch) | |
tree | d6a98a74f4a5788c2a33edd589a821d6775c69a0 /tests/test_concurrency.py | |
parent | b703555bb598788e909636babd5592000e082218 (diff) | |
download | python-coveragepy-git-5f9fd32139fd0c54d025bb4c8c4132cd07ee29b0.tar.gz |
test: no need to protect against a 3.11.0a4 bug anymore
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 |