Skip to content

Commit a30dac4

Browse files
committed
Fix
1 parent f05e019 commit a30dac4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/scripts/parse-test-selection.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def parse() -> dict[str, Param]:
8787

8888
if libraries != "ALL":
8989
if check_libraries(libraries):
90-
ret[pattern].libraries = set(libraries)
90+
ret[pattern].libraries = {libraries}
9191
else:
9292
raise Exception(f"One or more of the libraries does not exist: {libraries}") # noqa: TRY002
9393

@@ -342,6 +342,7 @@ def main_scenario_processing(impacts: dict[str, Param], output: str) -> None:
342342
else:
343343
for pattern, requirement in impacts.items():
344344
if re.fullmatch(pattern, file):
345+
print(result.scenarios_groups, requirement.scenarios, pattern)
345346
result.scenarios_groups |= requirement.scenarios
346347
# on first matching pattern, stop the loop
347348
break

0 commit comments

Comments
 (0)