Include parser option for --no-tests

This commit is contained in:
Mike Place 2015-03-13 13:18:54 -06:00
parent df52f85b37
commit 56650f7e35

View File

@ -56,6 +56,12 @@ class SaltTestsuiteParser(SaltCoverageTestingParser):
default='zeromq',
choices=('zeromq', 'raet'),
help='Set to raet to run integration tests with raet transport. Default: %default')
self.add_option(
'--no-test',
default=False,
action='store_true',
help='Do not run any tests. Simply start the daemons.'
)
self.test_selection_group.add_option(
'-m',