We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed8a45c + 217fcea commit dc74dd5Copy full SHA for dc74dd5
1 file changed
run-tests.php
@@ -2805,6 +2805,11 @@ function is_flaky(TestFile $test): bool
2805
if ($test->hasSection('FLAKY')) {
2806
return true;
2807
}
2808
+ if ($test->hasSection('SKIPIF')) {
2809
+ if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) {
2810
+ return true;
2811
+ }
2812
2813
if (!$test->hasSection('FILE')) {
2814
return false;
2815
0 commit comments