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.

(cherry picked from commit 40289d5440)
This commit is contained in:
Tom Krizek 2023-08-22 18:49:55 +02:00
parent ac465416f9
commit 764161d8cf
No known key found for this signature in database
GPG key ID: 01623B9B652A20A7

View file

@ -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()