From 92d79549c1202baf8232b34396e1ee6ff9101cbe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Wed, 2 Jul 2025 18:00:16 +0200 Subject: [PATCH] Increase test re-runs for enginepkcs11 The enginepkcs11 test has been chronically unstable for quite a while. With no fix in sight, increase the number of allowed re-runs to reduce the number of failures we see in the CI. (cherry picked from commit 87ab198b73ce774cfb15541c32bee42e963c2c9b) --- bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py index 5a5fef62d5..b8fe114eb8 100644 --- a/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py +++ b/bin/tests/system/enginepkcs11/tests_sh_enginepkcs11.py @@ -53,6 +53,6 @@ pytestmark = pytest.mark.extra_artifacts( ) -@isctest.mark.flaky(max_runs=3) # GL#4605 +@isctest.mark.flaky(max_runs=5) # GL#4605 def test_enginepkcs11(run_tests_sh): run_tests_sh()