mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Use the same args for integration tests
This commit is contained in:
parent
a71bcfb734
commit
c5b5732957
1 changed files with 2 additions and 4 deletions
|
@ -1958,12 +1958,11 @@ def ci_test_onedir_pkgs(session):
|
|||
)
|
||||
|
||||
if chunk not in ("install", "download-pkgs"):
|
||||
cmd_args = chunks["install"]
|
||||
cmd_args = chunks[chunk]
|
||||
pytest_args = (
|
||||
common_pytest_args[:]
|
||||
+ cmd_args[:]
|
||||
+ [
|
||||
"--no-install",
|
||||
"--junitxml=artifacts/xml-unittests-output/test-results-install.xml",
|
||||
"--log-file=artifacts/logs/runtests-install.log",
|
||||
]
|
||||
|
@ -1979,12 +1978,11 @@ def ci_test_onedir_pkgs(session):
|
|||
if os.environ.get("RERUN_FAILURES", "0") == "0":
|
||||
# Don't rerun on failures
|
||||
return
|
||||
cmd_args = chunks["install"]
|
||||
cmd_args = chunks[chunk]
|
||||
pytest_args = (
|
||||
common_pytest_args[:]
|
||||
+ cmd_args[:]
|
||||
+ [
|
||||
"--no-install",
|
||||
"--junitxml=artifacts/xml-unittests-output/test-results-install-rerun.xml",
|
||||
"--log-file=artifacts/logs/runtests-install-rerun.log",
|
||||
"--lf",
|
||||
|
|
Loading…
Add table
Reference in a new issue