forked from organicmaps/organicmaps
Replaced creating the list of files to run by a one-liner.
This commit is contained in:
parent
9a06d41971
commit
4b3e0787e2
1 changed files with 1 additions and 3 deletions
|
@ -100,9 +100,7 @@ def set_global_vars():
|
|||
skiplist = list(set(argument.split(",")))
|
||||
elif option in ("-i", "--include"):
|
||||
print("\n-i option found, -e option will be ignored!")
|
||||
include_tests = argument.split(",")
|
||||
for include_test in include_tests:
|
||||
runlist.append(include_test)
|
||||
runlist = argument.split(",")
|
||||
elif option in ("-f", "--folder"):
|
||||
workspace_path = argument
|
||||
else:
|
||||
|
|
Loading…
Add table
Reference in a new issue