forked from organicmaps/organicmaps
Merge pull request #2734 from therearesomewhocallmetim/fix-integrotests
Fixed parsing of the command line argument for tests to be included i…
This commit is contained in:
commit
a59ae873c4
1 changed files with 5 additions and 1 deletions
|
@ -121,7 +121,11 @@ class IntegrationRunner:
|
|||
exit(2)
|
||||
|
||||
self.workspace_path = options.folder
|
||||
self.runlist = filter(lambda x: x in tests_on_disk(self.workspace_path), options.runlist)
|
||||
interim_runlist = list()
|
||||
for opt in options.runlist:
|
||||
interim_runlist.extend(map(lambda x: x.strip(), opt.split(",")))
|
||||
|
||||
self.runlist = filter(lambda x: x in tests_on_disk(self.workspace_path), interim_runlist)
|
||||
self.output = options.output
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue