1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 15:03:53 +01:00

Merge pull request #18996 from kaspar030/fast_build_unittests_fix

CI: can_fast_ci_build.py unittests fix
This commit is contained in:
Kaspar Schleiser 2022-11-30 10:14:00 +01:00 committed by GitHub
commit 0d30defd5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: