mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ci/can_fast_ci_run.py: add workaround for #18987
This commit is contained in:
parent
32f05417b0
commit
34cfdac78a
6
dist/tools/ci/can_fast_ci_run.py
vendored
6
dist/tools/ci/can_fast_ci_run.py
vendored
@ -73,6 +73,12 @@ class ChangeSet:
|
||||
while module != "":
|
||||
makefile = os.path.join(self._riotbase, module, "Makefile")
|
||||
if os.path.isfile(makefile) or module in EXCEPTION_MODULES:
|
||||
|
||||
# map all tests/unittests/* to just tests/unittests
|
||||
# workaround for #18987
|
||||
if module.startswith("tests/unittests/"):
|
||||
module = "tests/unittests"
|
||||
|
||||
if module in dest:
|
||||
dest[module].append(file)
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user