From c28958008921918694383caf0ad9bf823f71b53f Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 19 Aug 2016 11:31:07 +0100 Subject: [PATCH] tox.ini: only include py27 and py35 in default 'envlist'' When running `tox` command without specifying any `-e` option, or when no $TOXENV environment variable is specified, the 'envlist' in tox.ini file determines the list of environment tox will operate on. http://tox.readthedocs.io/en/latest/config.html#confval-envlist=CSV I chose Python 2.7 and 3.5 because I assume they are the versions that other fonttols developers run their tests on locally, before pushing and let the CI run the tests on the rest of the pythons. --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 243a06d7c..709f86e96 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, pypy, py34, py35 +envlist = py27, py35 [testenv] basepython =