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