summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorChad Smith <chad.smith@canonical.com>2022-01-18 16:37:50 -0700
committerGitHub <noreply@github.com>2022-01-18 17:37:50 -0600
commitc2c2a663edccd9fcb74f3bed24a6daad09c45d2a (patch)
tree428c96e3b0f2d3956b64fd7d45e0ea11368fe369 /tox.ini
parent0988fb89be06aeb08083ce609f755509d08fa459 (diff)
downloadcloud-init-git-c2c2a663edccd9fcb74f3bed24a6daad09c45d2a.tar.gz
tox: pass PYCLOUDLIB_* env vars into integration tests when present (#1196)
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 57d18cdb..52849557 100644
--- a/tox.ini
+++ b/tox.ini
@@ -122,7 +122,7 @@ deps =
commands = {envpython} -m pytest --log-cli-level=INFO {posargs:tests/integration_tests}
deps =
-r{toxinidir}/integration-requirements.txt
-passenv = CLOUD_INIT_* SSH_AUTH_SOCK OS_*
+passenv = CLOUD_INIT_* PYCLOUDLIB_* SSH_AUTH_SOCK OS_*
[testenv:integration-tests-ci]
commands = {[testenv:integration-tests]commands}
@@ -134,7 +134,7 @@ setenv =
[testenv:integration-tests-jenkins]
commands = {[testenv:integration-tests]commands}
deps = {[testenv:integration-tests]deps}
-passenv = *_proxy CLOUD_INIT_* SSH_AUTH_SOCK OS_* GOOGLE_* GCP_*
+passenv = *_proxy CLOUD_INIT_* PYCLOUDLIB_* SSH_AUTH_SOCK OS_* GOOGLE_* GCP_*
setenv =
PYTEST_ADDOPTS="-m not adhoc"