diff options
author | Daniel Watkins <oddbloke@ubuntu.com> | 2021-03-03 15:55:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 14:55:48 -0600 |
commit | 106c57d511b862177c8356685cf6d49ddd6cb55f (patch) | |
tree | bd354b9538b4672b3e32971841c2b9f9e3f87aea /tox.ini | |
parent | 3dd3de7c381e870c6bc9b9b7a84d452b57594686 (diff) | |
download | vyos-cloud-init-106c57d511b862177c8356685cf6d49ddd6cb55f.tar.gz vyos-cloud-init-106c57d511b862177c8356685cf6d49ddd6cb55f.zip |
tox.ini: pass OS_* environment variables to integration tests (#830)
This allows source'd OpenStack credentials to be used for tox tests.
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -147,13 +147,13 @@ deps = [testenv:integration-tests] basepython = python3 commands = {envpython} -m pytest --log-cli-level=INFO {posargs:tests/integration_tests} -passenv = CLOUD_INIT_* SSH_AUTH_SOCK +passenv = CLOUD_INIT_* SSH_AUTH_SOCK OS_* deps = -r{toxinidir}/integration-requirements.txt [testenv:integration-tests-ci] commands = {envpython} -m pytest --log-cli-level=INFO {posargs:tests/integration_tests} -passenv = CLOUD_INIT_* SSH_AUTH_SOCK +passenv = CLOUD_INIT_* SSH_AUTH_SOCK OS_* deps = -r{toxinidir}/integration-requirements.txt setenv = |