From: Nicki Křížek Date: Thu, 7 Nov 2024 15:15:54 +0000 (+0100) Subject: Allow re-run of mkeys system test X-Git-Tag: v9.21.3~24^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a299650a6f1a4cac9c8e8105cb29a5de8a9c21ff;p=thirdparty%2Fbind9.git Allow re-run of mkeys system test On some slow systems, the test might intermittently fail due to inherent timing issues. In our CI, this most often happens in the system:gcc:8fips:amd64 jobs. --- diff --git a/bin/tests/system/mkeys/tests_sh_mkeys.py b/bin/tests/system/mkeys/tests_sh_mkeys.py index b04d7884763..5a350217909 100644 --- a/bin/tests/system/mkeys/tests_sh_mkeys.py +++ b/bin/tests/system/mkeys/tests_sh_mkeys.py @@ -11,6 +11,8 @@ import pytest +import isctest.mark + pytestmark = [ pytest.mark.algorithm_set("ecc_default"), pytest.mark.extra_artifacts( @@ -49,5 +51,6 @@ pytestmark = [ ] +@isctest.mark.flaky(max_runs=2) # GL#3098 def test_mkeys(run_tests_sh): run_tests_sh()