summaryrefslogtreecommitdiff
path: root/tests/test_runner/test_parallel.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-23 14:37:46 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-10-23 15:26:04 +0200
commit25903e41fb45ce9cc80dc93bf4b51ea431dcb2b6 (patch)
treee34b436f3a24468f633aa8b7517e3bc7fc436fc9 /tests/test_runner/test_parallel.py
parente10ebf43e12c6e2998abd31ca898fd5998464927 (diff)
Refs #29926 -- Bumped minimum tblib version to 1.5.0 in test requirements.
Diffstat (limited to 'tests/test_runner/test_parallel.py')
-rw-r--r--tests/test_runner/test_parallel.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/test_runner/test_parallel.py b/tests/test_runner/test_parallel.py
index cb69c2bf4f..c1a89bd0f0 100644
--- a/tests/test_runner/test_parallel.py
+++ b/tests/test_runner/test_parallel.py
@@ -2,7 +2,7 @@ import unittest
from django.test import SimpleTestCase
from django.test.runner import RemoteTestResult
-from django.utils.version import PY37, PY38
+from django.utils.version import PY37
try:
import tblib
@@ -63,11 +63,6 @@ class RemoteTestResultTest(SimpleTestCase):
with self.assertRaisesMessage(TypeError, msg):
result._confirm_picklable(not_unpicklable_error)
- @unittest.skipIf(
- PY38 and tblib is not None and tblib.__version__ <= '1.4.0',
- 'tblib <= 1.4.0 does not support Python 3.8 due to changes in the '
- 'CodeType signature (see https://bugs.python.org/issue36886).'
- )
@unittest.skipUnless(tblib is not None, 'requires tblib to be installed')
def test_add_failing_subtests(self):
"""