summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2019-09-29 22:46:03 -0400
committerJason R. Coombs <jaraco@jaraco.com>2019-09-29 22:46:03 -0400
commit9314eb458311dfd8981a6378b8498017c89ea2f7 (patch)
tree7ff1139a9fc485aad73735e28053491eceee0d6f
parentcc1a1c9be39ba29e90d6d9d8ab5d6d1768a50594 (diff)
downloadpytest-runner-9314eb458311dfd8981a6378b8498017c89ea2f7.tar.gz
Ensure that a late version of pip is installed without special versions of tox-venv.
-rw-r--r--tox.ini6
1 files changed, 6 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 4f3341f..ab6cd40 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,10 +3,16 @@ envlist = python
minversion = 3.2
# https://github.com/jaraco/skeleton/issues/6
tox_pip_extensions_ext_venv_update = true
+# ensure that a late version of pip is used even on tox-venv
+requires =
+ tox-pip-version
+ tox-venv
+
[testenv]
deps =
setuptools>=31.0.1
+pip_version = pip
commands =
pytest {posargs}
usedevelop = True