From: Tom Krizek Date: Fri, 22 Dec 2023 15:11:21 +0000 (+0100) Subject: Don't type-check the flaky plugin with mypy X-Git-Tag: v9.19.22~89^2~1 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a65b654a233d4e1f2d86e22dda8bc8b8bb1164ac;p=thirdparty%2Fbind9.git 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. --- diff --git a/bin/tests/system/isctest/mark.py b/bin/tests/system/isctest/mark.py index ba3a9d4894a..769abbbb5df 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.