Skip to content

Commit 0be1ae7

Browse files
Fix slow test skipping in CI. (#29097)
CI does "--exclude-tags SLOW", but it was not specifying any "--include-tags", so the harness overwrote the "--exclude-tags" value and we were in fact running the slow tests when we did not want to be.
1 parent 26ae648 commit 0be1ae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/tests/run_test_suite.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def main(context, dry_run, log_level, target, target_glob, target_skip_glob,
169169

170170
# If just defaults specified, do not run manual and in development
171171
# Specific target basically includes everything
172-
if 'all' in target and not include_tags:
172+
if 'all' in target and not include_tags and not exclude_tags:
173173
exclude_tags = {
174174
TestTag.MANUAL,
175175
TestTag.IN_DEVELOPMENT,

0 commit comments

Comments
 (0)