Add Python 3.5 to tox.ini for test runs

- also added skip-missing-interpreters option
http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL

Change-Id: I461677ac11e59e7931931b3f5993bbcdf1192369
This commit is contained in:
Jason Meridth 2016-05-10 15:22:24 -05:00
parent 5b8be5e231
commit 4522ff5324
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,6 @@
[tox]
envlist=pep8,py27,py34
envlist=pep8,py27,py34,py35
skip_missing_interpreters=true
[testenv]
setenv=VIRTUAL_ENV={envdir}
@ -11,6 +12,9 @@ commands=nosetests
[testenv:py34]
commands=nosetests
[testenv:py35]
commands=nosetests
[testenv:pep8]
commands=flake8