Skip to content

Commit

Permalink
Fix sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Feb 26, 2015
1 parent 8d813da commit 904da8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/run_tests/jobset.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def run(cmdlines,
if not travis:
cmdlines = shuffle_iteratable(cmdlines)
else:
cmdlines = sorted(cmdlines)
cmdlines = sorted(cmdlines, key=lambda x: x.shortname)
for cmdline in cmdlines:
if not js.start(cmdline):
break
Expand Down

0 comments on commit 904da8c

Please sign in to comment.