summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-03-21 07:54:02 +0100
committerGitHub <noreply@github.com>2023-03-21 07:54:02 +0100
commitcf148d7f9d8f5fe6a230929bffb905ddba24d834 (patch)
treee3ea7b9b12a9f0c9a4e88acdbad7683313a3bfb4
parentadc0bc2392937e17cd74ef695933c155c6f46d49 (diff)
downloadpylint-git-cf148d7f9d8f5fe6a230929bffb905ddba24d834.tar.gz
[test multiprocessing] Fix tests for unpickable plugins (#8470)
-rw-r--r--tests/test_check_parallel.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py
index 57cdc07e8..9134d485b 100644
--- a/tests/test_check_parallel.py
+++ b/tests/test_check_parallel.py
@@ -249,10 +249,9 @@ class TestCheckParallelFramework:
linter.load_plugin_modules(["pylint.extensions.overlapping_exceptions"])
try:
dill.dumps(linter)
- # TODO: 3.0: Fix this test by raising this assertion again
- # raise AssertionError(
- # "Plugins loaded were pickle-safe! This test needs altering"
- # )
+ raise AssertionError(
+ "Plugins loaded were pickle-safe! This test needs altering"
+ )
except (KeyError, TypeError, PickleError, NotImplementedError):
pass