From 091474f883f603f15db21a4a1f51ca5d9f85a72f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicki=20K=C5=99=C3=AD=C5=BEek?= Date: Thu, 3 Jul 2025 14:02:57 +0200 Subject: [PATCH] Mark the serve_stale system test as flaky The serve_stale test has some inherent instabilities affecting many different checks. While the failure rate isn't too high (about four failures in past three weeks of nightlies), it gets ignored, because the test has been unstable for a very long time. (cherry picked from commit 1e0df480c75f474f58e556f49c89b48ee38f4a1d) --- bin/tests/system/serve-stale/tests_sh_serve_stale.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/tests/system/serve-stale/tests_sh_serve_stale.py b/bin/tests/system/serve-stale/tests_sh_serve_stale.py index 18b84e8b79..b55336d2b6 100644 --- a/bin/tests/system/serve-stale/tests_sh_serve_stale.py +++ b/bin/tests/system/serve-stale/tests_sh_serve_stale.py @@ -11,6 +11,8 @@ import pytest +import isctest.mark + pytestmark = pytest.mark.extra_artifacts( [ "dig.out.*", @@ -24,5 +26,6 @@ pytestmark = pytest.mark.extra_artifacts( ) +@isctest.mark.flaky(max_runs=2) def test_serve_stale(run_tests_sh): run_tests_sh()