From 2679239d1f707deab9c7cfd1456c302c16a9b1c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Noord?= <13665637+DanielNoord@users.noreply.github.com> Date: Wed, 8 Mar 2023 20:32:26 +0100 Subject: [PATCH] Temporarily disable a test --- tests/test_check_parallel.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/test_check_parallel.py b/tests/test_check_parallel.py index 9134d485bc..57cdc07e80 100644 --- a/tests/test_check_parallel.py +++ b/tests/test_check_parallel.py @@ -249,9 +249,10 @@ def test_linter_with_unpickleable_plugins_is_pickleable(self) -> None: linter.load_plugin_modules(["pylint.extensions.overlapping_exceptions"]) try: dill.dumps(linter) - raise AssertionError( - "Plugins loaded were pickle-safe! This test needs altering" - ) + # TODO: 3.0: Fix this test by raising this assertion again + # raise AssertionError( + # "Plugins loaded were pickle-safe! This test needs altering" + # ) except (KeyError, TypeError, PickleError, NotImplementedError): pass