From a65b654a233d4e1f2d86e22dda8bc8b8bb1164ac Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Fri, 22 Dec 2023 16:11:21 +0100 Subject: [PATCH] Don't type-check the flaky plugin with mypy Since we execute mypy for bin/tests/system/isctest package, this is now needed because the flaky package doesn't have type hints. --- bin/tests/system/isctest/mark.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/isctest/mark.py b/bin/tests/system/isctest/mark.py index ba3a9d4894..769abbbb5d 100644 --- a/bin/tests/system/isctest/mark.py +++ b/bin/tests/system/isctest/mark.py @@ -43,7 +43,7 @@ have_json_c = pytest.mark.skipif( try: - import flaky as flaky_pkg + import flaky as flaky_pkg # type: ignore except ModuleNotFoundError: # In case the flaky package is not installed, run the tests as usual # without any attempts to re-run them.