diff options
author | Paul Ganssle <paul@ganssle.io> | 2018-03-21 11:16:18 -0400 |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2018-03-23 13:06:10 -0400 |
commit | aeb6c9435b50715f91f4ad06e387172be9742beb (patch) | |
tree | 00d21c974a9be9ad899da673ba2ca555a0b1ba16 | |
parent | a2b444f1375d8c56275e50bd2a9bbe111003a76b (diff) | |
download | python-setuptools-git-aeb6c9435b50715f91f4ad06e387172be9742beb.tar.gz |
Add travis, appveyor and codecov passenvs
Some of these environment variables are necessary codecov to
detect that it is on travis/appveyor and thus doesn't need
an upload token.
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ [testenv] deps=-rtests/requirements.txt setenv=COVERAGE_FILE={toxworkdir}/.coverage.{envname} -passenv=APPDATA USERPROFILE HOMEDRIVE HOMEPATH windir APPVEYOR +passenv=APPDATA USERPROFILE 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}"} |