From 9e86a262fe01130fb12b5cf33b1eddc0bf6a3e41 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sun, 19 Jan 2020 12:42:58 +0100 Subject: [PATCH] tox: use download=true to upgrade pip/setuptools/virtualenv Maybe this fixes py34 on AppVeyor. --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 379249d3..6e11ee3c 100644 --- a/tox.ini +++ b/tox.ini @@ -3,6 +3,7 @@ envlist=py{27,34,35,36}-pytest{29,30,31},py37-pytest{30,31} [testenv] +download = true commands= pip install -U . # hande the install order fallout since pytest depends on pip py.test --confcutdir=. --junitxml={envlogdir}/junit-{envname}.xml []