From: Tom Krizek Date: Thu, 14 Mar 2024 15:18:02 +0000 (+0100) Subject: Mark the autosign system test as flaky X-Git-Tag: v9.19.23~16^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a061fd67f6e51e769fa4740d6c4dbf357338c631;p=thirdparty%2Fbind9.git 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. --- diff --git a/bin/tests/system/autosign/tests_sh_autosign.py b/bin/tests/system/autosign/tests_sh_autosign.py index 16dfc29caf0..b0399063b38 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()