summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Ganssle <paul@ganssle.io>2018-03-22 11:12:28 -0400
committerPaul Ganssle <paul@ganssle.io>2018-03-23 13:06:11 -0400
commit18ea99486520e3f7cf1668436ae800695ae1fb9c (patch)
tree095aaea4cff5d31496f360a6e9c0c0ec39e310f2
parentb987fe1c2fa61040cc07a07d93b5284b66b03288 (diff)
downloadpython-setuptools-git-18ea99486520e3f7cf1668436ae800695ae1fb9c.tar.gz
Update tox passenv
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 5a7044d4..6f760585 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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}"}