Use the same args for integration tests

This commit is contained in:
Daniel A. Wozniak 2024-09-18 18:05:24 -07:00
parent a71bcfb734
commit c5b5732957

View file

@ -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",