mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
add additional parser argument for ssh integration tests
This commit is contained in:
parent
e9231430b5
commit
46bce3bd5e
1 changed files with 10 additions and 2 deletions
|
@ -130,8 +130,8 @@ TEST_SUITES = {
|
|||
'returners':
|
||||
{'display_name': 'Returners',
|
||||
'path': 'integration/returners'},
|
||||
'ssh':
|
||||
{'display_name': 'SSH',
|
||||
'ssh-int':
|
||||
{'display_name': 'SSH Integration',
|
||||
'path': 'integration/ssh'},
|
||||
'spm':
|
||||
{'display_name': 'SPM',
|
||||
|
@ -415,6 +415,14 @@ class SaltTestsuiteParser(SaltCoverageTestingParser):
|
|||
'SSH server on your machine. In certain environments, this '
|
||||
'may be insecure! Default: False'
|
||||
)
|
||||
self.test_selection_group.add_option(
|
||||
'--ssh-int',
|
||||
dest='ssh-int',
|
||||
action='store_true',
|
||||
default=False,
|
||||
help='Run salt-ssh integration tests. Requires to be run with --ssh'
|
||||
'to spin up the SSH server on your machine.'
|
||||
)
|
||||
self.test_selection_group.add_option(
|
||||
'-A',
|
||||
'--api',
|
||||
|
|
Loading…
Add table
Reference in a new issue