mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Remove unused argument
This commit is contained in:
parent
1656cb496e
commit
870b8990f9
1 changed files with 4 additions and 4 deletions
|
@ -254,7 +254,7 @@ def _run_with_coverage(session, *test_cmd):
|
|||
session.run('coverage', 'xml', '-o', os.path.join(REPO_ROOT, 'artifacts', 'coverage', 'coverage.xml'))
|
||||
|
||||
|
||||
def _runtests(session, coverage, transport, cmd_args):
|
||||
def _runtests(session, coverage, cmd_args):
|
||||
# Create required artifacts directories
|
||||
_create_ci_directories()
|
||||
try:
|
||||
|
@ -337,7 +337,7 @@ def runtests_parametrized(session, coverage, transport, crypto):
|
|||
),
|
||||
'--transport={}'.format(transport)
|
||||
] + session.posargs
|
||||
_runtests(session, coverage, transport, cmd_args)
|
||||
_runtests(session, coverage, cmd_args)
|
||||
|
||||
|
||||
@nox.session(python=_PYTHON_VERSIONS)
|
||||
|
@ -533,7 +533,7 @@ def pytest_parametrized(session, coverage, transport, crypto):
|
|||
'-s',
|
||||
'--transport={}'.format(transport)
|
||||
] + session.posargs
|
||||
_pytest(session, coverage, transport, cmd_args)
|
||||
_pytest(session, coverage, cmd_args)
|
||||
|
||||
|
||||
@nox.session(python=_PYTHON_VERSIONS)
|
||||
|
@ -704,7 +704,7 @@ def pytest_raet_pycryptodomex(session, coverage):
|
|||
)
|
||||
|
||||
|
||||
def _pytest(session, coverage, transport, cmd_args):
|
||||
def _pytest(session, coverage, cmd_args):
|
||||
# Create required artifacts directories
|
||||
_create_ci_directories()
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue