From a061fd67f6e51e769fa4740d6c4dbf357338c631 Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Thu, 14 Mar 2024 16:18:02 +0100 Subject: [PATCH] Mark the autosign system test as flaky The autosign test uses sleep in many cases to wait for something to happen. This inevitably leads to an instability that manifests in our CI. Allow an automatic rerun of the test to improve its stability. --- bin/tests/system/autosign/tests_sh_autosign.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/tests/system/autosign/tests_sh_autosign.py b/bin/tests/system/autosign/tests_sh_autosign.py index 16dfc29caf..b0399063b3 100644 --- a/bin/tests/system/autosign/tests_sh_autosign.py +++ b/bin/tests/system/autosign/tests_sh_autosign.py @@ -10,5 +10,9 @@ # information regarding copyright ownership. +import isctest.mark + + +@isctest.mark.flaky(max_runs=2) def test_autosign(run_tests_sh): run_tests_sh()