From 2f54aa22c7e9ce389b13a85fa87d8b54a61715ba 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. (cherry picked from commit a299650a6f1a4cac9c8e8105cb29a5de8a9c21ff) --- 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 b78faee6a2..ed0916d100 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.extra_artifacts( [ "delv.*", @@ -45,5 +47,6 @@ pytestmark = pytest.mark.extra_artifacts( ) +@isctest.mark.flaky(max_runs=2) # GL#3098 def test_mkeys(run_tests_sh): run_tests_sh()