From 40289d5440a2c39f94a80bc49904c3bc4c8c12f0 Mon Sep 17 00:00:00 2001 From: Tom Krizek Date: Tue, 22 Aug 2023 18:49:55 +0200 Subject: [PATCH] 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. --- bin/tests/system/rrl/tests_sh_rrl.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/tests/system/rrl/tests_sh_rrl.py b/bin/tests/system/rrl/tests_sh_rrl.py index 6c8edc55c2..05b43a6fe1 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()