We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ccb3a commit b8909b0Copy full SHA for b8909b0
test/functional/test_runner.py
@@ -401,8 +401,9 @@ def main():
401
for test in tests:
402
script = test.split("/")[-1]
403
script = script + ".py" if ".py" not in script else script
404
- if script in ALL_SCRIPTS:
405
- test_list.append(script)
+ matching_scripts = [s for s in ALL_SCRIPTS if s.startswith(script)]
+ if matching_scripts:
406
+ test_list.extend(matching_scripts)
407
else:
408
print("{}WARNING!{} Test '{}' not found in full test list.".format(BOLD[1], BOLD[0], test))
409
elif args.extended:
0 commit comments