diff options
author | Chad Smith <chad.smith@canonical.com> | 2022-01-18 16:37:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 17:37:50 -0600 |
commit | c2c2a663edccd9fcb74f3bed24a6daad09c45d2a (patch) | |
tree | 428c96e3b0f2d3956b64fd7d45e0ea11368fe369 /tox.ini | |
parent | 0988fb89be06aeb08083ce609f755509d08fa459 (diff) | |
download | vyos-cloud-init-c2c2a663edccd9fcb74f3bed24a6daad09c45d2a.tar.gz vyos-cloud-init-c2c2a663edccd9fcb74f3bed24a6daad09c45d2a.zip |
tox: pass PYCLOUDLIB_* env vars into integration tests when present (#1196)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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" |