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.
This commit is contained in:
Cosimo Lupo 2016-08-19 11:31:07 +01:00
parent a368849243
commit c289580089

View File

@ -1,5 +1,5 @@
[tox]
envlist = py27, pypy, py34, py35
envlist = py27, py35
[testenv]
basepython =