Skip to content

Commit

Permalink
Added alphabetic sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
seriva committed Apr 22, 2020
1 parent 0f36a22 commit 2b35443
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/src/epicli/cli/engine/spec/SpecCommand.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,6 @@ def run(self, spec_output, inventory, user, key, group):
def get_spec_groups():
groups = os.listdir(SPEC_TEST_PATH + '/spec')
groups.remove('spec_helper.rb')
return ['all'] + groups
groups = ['all'] + groups
sorted(groups, key=str.lower)
return groups

0 comments on commit 2b35443

Please sign in to comment.