1
0
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:
Kaspar Schleiser 2022-11-30 09:37:34 +01:00
parent 32f05417b0
commit 34cfdac78a

View File

@ -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: