Skip to content

Commit

Permalink
Fixed listing.
Browse files Browse the repository at this point in the history
  • Loading branch information
seriva committed Apr 22, 2020
1 parent 2b35443 commit 5102266
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/src/epicli/cli/epicli.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ def test_parser(subparsers):
sub_parser = subparsers.add_parser('test', description='Test a cluster from build artifacts.')
sub_parser.add_argument('-b', '--build', dest='build_directory', type=str, required=True,
help='Absolute path to directory with build artifacts.')
sub_parser.add_argument('-g', '--group', choices=SpecCommand.get_spec_groups(), default='all', action='store', dest='group', required=False,
group_list = '{' + ', '.join(SpecCommand.get_spec_groups()) + '}'
sub_parser.add_argument('-g', '--group', choices=SpecCommand.get_spec_groups(), default='all', action='store', dest='group', required=False, metavar=group_list,
help='Group of tests to be run, e.g. kafka.')

def run_test(args):
Expand Down

0 comments on commit 5102266

Please sign in to comment.