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.
This commit is contained in:
Tom Krizek 2023-12-22 16:11:21 +01:00
parent f314f1b432
commit a65b654a23
No known key found for this signature in database
GPG key ID: 01623B9B652A20A7

View file

@ -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.