We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f65a574 + 99076eb commit db98c57Copy full SHA for db98c57
1 file changed
run-tests.php
@@ -2812,6 +2812,11 @@ function is_flaky(TestFile $test): bool
2812
if ($test->hasSection('FLAKY')) {
2813
return true;
2814
}
2815
+ if ($test->hasSection('SKIPIF')) {
2816
+ if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) {
2817
+ return true;
2818
+ }
2819
2820
if (!$test->hasSection('FILE')) {
2821
return false;
2822
0 commit comments