Skip to content
Snippets Groups Projects
Commit 904da8ca authored by Craig Tiller's avatar Craig Tiller
Browse files

Fix sorting

parent 8d813da1
No related branches found
No related tags found
No related merge requests found
...@@ -292,7 +292,7 @@ def run(cmdlines, ...@@ -292,7 +292,7 @@ def run(cmdlines,
if not travis: if not travis:
cmdlines = shuffle_iteratable(cmdlines) cmdlines = shuffle_iteratable(cmdlines)
else: else:
cmdlines = sorted(cmdlines) cmdlines = sorted(cmdlines, key=lambda x: x.shortname)
for cmdline in cmdlines: for cmdline in cmdlines:
if not js.start(cmdline): if not js.start(cmdline):
break break
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment