Skip to content

Commit

Permalink
Run functional tests with all possible flags
Browse files Browse the repository at this point in the history
  • Loading branch information
meshcollider committed Sep 26, 2021
1 parent 16ccb3a commit b8909b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/functional/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,9 @@ def main():
for test in tests:
script = test.split("/")[-1]
script = script + ".py" if ".py" not in script else script
if script in ALL_SCRIPTS:
test_list.append(script)
matching_scripts = [s for s in ALL_SCRIPTS if s.startswith(script)]
if matching_scripts:
test_list.extend(matching_scripts)
else:
print("{}WARNING!{} Test '{}' not found in full test list.".format(BOLD[1], BOLD[0], test))
elif args.extended:
Expand Down

0 comments on commit b8909b0

Please sign in to comment.