From: Tom Krizek Date: Tue, 22 Aug 2023 16:49:55 +0000 (+0200) Subject: Allow re-runs of rrl system test X-Git-Tag: v9.19.17~35^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40289d5440a2c39f94a80bc49904c3bc4c8c12f0;p=thirdparty%2Fbind9.git Allow re-runs of rrl system test The rrl system test has been unstable and producing false positive results for years (GL #172). Allow the test to be re-run (once) to reduce the noise it causes. --- diff --git a/bin/tests/system/rrl/tests_sh_rrl.py b/bin/tests/system/rrl/tests_sh_rrl.py index 6c8edc55c2c..05b43a6fe18 100644 --- a/bin/tests/system/rrl/tests_sh_rrl.py +++ b/bin/tests/system/rrl/tests_sh_rrl.py @@ -9,6 +9,10 @@ # See the COPYRIGHT file distributed with this work for additional # information regarding copyright ownership. +import pytest_custom_markers + +# The rrl is known to be quite unstable. GL #172 +@pytest_custom_markers.flaky(max_runs=2) def test_rrl(run_tests_sh): run_tests_sh()