mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
add spm tests to test runner
This commit is contained in:
parent
4729ccd32b
commit
9e2e785034
1 changed files with 10 additions and 0 deletions
|
@ -130,6 +130,9 @@ TEST_SUITES = {
|
|||
'returners':
|
||||
{'display_name': 'Returners',
|
||||
'path': 'integration/returners'},
|
||||
'spm':
|
||||
{'display_name': 'SPM',
|
||||
'path': 'integration/spm'},
|
||||
'loader':
|
||||
{'display_name': 'Loader',
|
||||
'path': 'integration/loader'},
|
||||
|
@ -338,6 +341,13 @@ class SaltTestsuiteParser(SaltCoverageTestingParser):
|
|||
action='store_true',
|
||||
help='Run salt/returners/*.py tests'
|
||||
)
|
||||
self.test_selection_group.add_option(
|
||||
'--spm',
|
||||
dest='spm',
|
||||
default=False,
|
||||
action='store_true',
|
||||
help='Run spm integration tests'
|
||||
)
|
||||
self.test_selection_group.add_option(
|
||||
'-l',
|
||||
'--loader',
|
||||
|
|
Loading…
Add table
Reference in a new issue