We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a1bb72 commit f97925cCopy full SHA for f97925c
tools/ci_set_matrix.py
@@ -58,6 +58,8 @@
58
"tools/ci_check_duplicate_usb_vid_pid.py",
59
]
60
61
+IGNORE_DIRS = ["tests", "docs", ".devcontainer"]
62
+
63
if len(sys.argv) > 1:
64
print("Using files list on commandline")
65
changed_files = sys.argv[1:]
@@ -150,7 +152,7 @@ def get_settings(board):
150
152
continue
151
153
154
# Boards don't run tests or docs so ignore those as well.
- if p.startswith("tests") or p.startswith("docs"):
155
+ if any([p.startswith(d) for d in IGNORE_DIRS]):
156
157
158
# As a (nearly) last resort, for some certain files, we compute the settings from the
0 commit comments