diff options
author | Paul Ganssle <paul@ganssle.io> | 2018-03-22 11:12:28 -0400 |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2018-03-23 13:06:11 -0400 |
commit | 18ea99486520e3f7cf1668436ae800695ae1fb9c (patch) | |
tree | 095aaea4cff5d31496f360a6e9c0c0ec39e310f2 | |
parent | b987fe1c2fa61040cc07a07d93b5284b66b03288 (diff) | |
download | python-setuptools-git-18ea99486520e3f7cf1668436ae800695ae1fb9c.tar.gz |
Update tox passenv
-rw-r--r-- | tox.ini | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,7 +7,9 @@ [testenv] deps=-rtests/requirements.txt setenv=COVERAGE_FILE={toxworkdir}/.coverage.{envname} -passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* +# TODO: The passed environment variables came from copying other tox.ini files +# These should probably be individually annotated to explain what needs them. +passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* # These are separate so xfail tests don't count towards code coverage commands=pytest -m "not xfail" {posargs: "{toxinidir}" --cov-config={toxinidir}/tox.ini --cov=setuptools} pytest -m "xfail" {posargs: "{toxinidir}"} |