summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2020-01-19 14:06:35 -0500
committerJason R. Coombs <jaraco@jaraco.com>2020-01-19 15:05:26 -0500
commit6d4e23882a5b1e1f31fb452aaad9d19cf0d02604 (patch)
tree571fa87a7dab690a86fc611a716e433d279d21ff /tox.ini
parent7cd8b4966a6e7186ff45fe1f1c09a58f8a678113 (diff)
downloadpython-setuptools-git-6d4e23882a5b1e1f31fb452aaad9d19cf0d02604.tar.gz
Move test dependencies to package metadata.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index a70dff87..aeae13ce 100644
--- a/tox.ini
+++ b/tox.ini
@@ -13,7 +13,6 @@ requires =
pip = python {toxinidir}/tools/tox_pip.py
[testenv]
-deps=-r{toxinidir}/tests/requirements.txt
pip_version = pip
install_command = {[helpers]pip} install {opts} {packages}
list_dependencies_command = {[helpers]pip} freeze --all
@@ -25,6 +24,8 @@ setenv =
passenv=APPDATA HOMEDRIVE HOMEPATH windir APPVEYOR APPVEYOR_* CI CODECOV_* TRAVIS TRAVIS_* NETWORK_REQUIRED
commands=pytest --cov-config={toxinidir}/tox.ini --cov-report= {posargs}
usedevelop=True
+extras =
+ tests
[testenv:coverage]