Replaced creating the list of files to run by a one-liner.

This commit is contained in:
Timofey 2015-06-03 15:58:49 +03:00 committed by Alex Zolotarev
parent 9a06d41971
commit 4b3e0787e2

View file

@ -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: