From 99076ebfb01cbef619263656684eb025fc87de2d Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Tue, 21 Oct 2025 17:52:04 +0200 Subject: [PATCH] [skip ci] Auto-mark SKIP_PERF_SENSITIVE tests as flaky These can occasionally fail in CI. --- run-tests.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/run-tests.php b/run-tests.php index 070229ec1d6..07496d31a56 100755 --- a/run-tests.php +++ b/run-tests.php @@ -2881,6 +2881,11 @@ function is_flaky(TestFile $test): bool if ($test->hasSection('FLAKY')) { return true; } + if ($test->hasSection('SKIPIF')) { + if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) { + return true; + } + } if (!$test->hasSection('FILE')) { return false; }