tox.ini: add py36 to env list

Running `tox` locally will run tests on 2.7, 3.5 and 3.6, by default; in any of these is not found, it will be skipped.
This commit is contained in:
Cosimo Lupo 2016-12-25 18:08:00 +00:00
parent 6125d0190d
commit 667e291501
No known key found for this signature in database
GPG Key ID: B61AAAD0B53A6419

View File

@ -1,5 +1,6 @@
[tox]
envlist = py27, py35
envlist = py27, py35, py36
skip_missing_interpreters = true
[testenv]
basepython =
@ -7,6 +8,7 @@ basepython =
pypy: {env:TOXPYTHON:pypy}
py34: {env:TOXPYTHON:python3.4}
py35: {env:TOXPYTHON:python3.5}
py36: {env:TOXPYTHON:python3.6}
deps =
pytest
-rrequirements.txt