We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b751582 + db98c57 commit 217fceaCopy full SHA for 217fcea
1 file changed
run-tests.php
@@ -2847,6 +2847,11 @@ function is_flaky(TestFile $test): bool
2847
if ($test->hasSection('FLAKY')) {
2848
return true;
2849
}
2850
+ if ($test->hasSection('SKIPIF')) {
2851
+ if (strpos($test->getSection('SKIPIF'), 'SKIP_PERF_SENSITIVE') !== false) {
2852
+ return true;
2853
+ }
2854
2855
if (!$test->hasSection('FILE')) {
2856
return false;
2857
0 commit comments