From 8ea6a20e01061668dbdf9287ef658019ceffa78f Mon Sep 17 00:00:00 2001 From: Adrien Barbaresi Date: Tue, 28 Jan 2020 20:33:23 +0100 Subject: [PATCH] Skip missing interpreters in tox.ini --- tox.ini | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 168ece2..a9ec295 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,10 @@ # and then run "tox" from this directory. [tox] -envlist = py27, py35, py36, py37, py38, doc +envlist = + py{27,35,36,37,38,py,py3}, doc +skip_missing_interpreters = + True [testenv] deps = @@ -19,7 +22,8 @@ deps = # requires a Compiler and the build dependencies), you can download # it from http://www.lfd.uci.edu/~gohlke/pythonlibs/#lxml and install it via # $PYTHONDIR\Scripts\pip.exe install *.whl -sitepackages=True +sitepackages= + True commands = pip install -r requirements.txt -e ".[test]" py.test