We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90bc40e commit 99076ebCopy full SHA for 99076eb
1 file changed
run-tests.php
@@ -2881,6 +2881,11 @@ function is_flaky(TestFile $test): bool
2881
if ($test->hasSection('FLAKY')) {
2882
return true;
2883
}
2884
+ if ($test->hasSection('SKIPIF')) {
2885
+ if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) {
2886
+ return true;
2887
+ }
2888
2889
if (!$test->hasSection('FILE')) {
2890
return false;
2891
0 commit comments