Skip to content

Commit f464eb0

Browse files
committed
scripts: ci: test_plan: ignore skips in test plan
The same as FILTERED, SKIPS should not be build. SKIP is now used to mark quarantined tests (changed from FILTERED). Signed-off-by: Piotr Kosycarz <[email protected]>
1 parent 1e986c2 commit f464eb0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/ci/test_plan.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,6 +502,9 @@ def parse_args():
502502
for ts in f.all_tests:
503503
if TwisterStatus(ts.get('status')) == TwisterStatus.FILTER:
504504
continue
505+
# SKIPS e.g. quarantined tests, should not be build
506+
if TwisterStatus(ts.get('status')) == TwisterStatus.SKIP:
507+
continue
505508
n = ts.get("name")
506509
a = ts.get("arch")
507510
p = ts.get("platform")

0 commit comments

Comments
 (0)