diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2019-11-23 14:05:38 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2019-11-23 14:05:38 -0500 |
commit | 790ce630fb8814e475b001bba04d84e687181f42 (patch) | |
tree | 32316ecd5792730b02a546043f592e0cbffaf77d | |
parent | dab2500aae23a4dd759e93b4654aee850081e2eb (diff) | |
download | python-setuptools-git-feature/easy-install-dep.tar.gz |
Use indexserver as that avoids setting the environment variable for setuptools own testsfeature/easy-install-dep
-rw-r--r-- | tox.ini | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,6 +6,9 @@ [tox] envlist=python +# temporarily get dependencies for private easy_install release +indexserver = + default = https://m.devpi.net/jaraco/dev/ [helpers] # Wrapper for calls to pip that make sure the version being used is a @@ -17,10 +20,7 @@ pip = python {toxinidir}/tools/tox_pip.py deps=-r{toxinidir}/tests/requirements.txt install_command = {[helpers]pip} install {opts} {packages} list_dependencies_command = {[helpers]pip} freeze --all -setenv= - COVERAGE_FILE={toxworkdir}/.coverage.{envname} - # temporary override to demo private release of easy_install - PIP_INDEX_URL=https://m.devpi.net/jaraco/dev/ +setenv=COVERAGE_FILE={toxworkdir}/.coverage.{envname} # 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_* NETWORK_REQUIRED |