From a299650a6f1a4cac9c8e8105cb29a5de8a9c21ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Thu, 7 Nov 2024 16:15:54 +0100 Subject: [PATCH] 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. --- bin/tests/system/mkeys/tests_sh_mkeys.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/tests/system/mkeys/tests_sh_mkeys.py b/bin/tests/system/mkeys/tests_sh_mkeys.py index b04d788476..5a35021790 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()