opencafe/tox.ini
Jason Meridth 4522ff5324 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
2016-05-11 12:29:30 -05:00

24 lines
356 B
INI

[tox]
envlist=pep8,py27,py34,py35
skip_missing_interpreters=true
[testenv]
setenv=VIRTUAL_ENV={envdir}
deps=-r{toxinidir}/test-requires
[testenv:py27]
commands=nosetests
[testenv:py34]
commands=nosetests
[testenv:py35]
commands=nosetests
[testenv:pep8]
commands=flake8
[flake8]
ignore=F401,E402
exclude=.git,.idea,docs,.tox,bin,dist,tools,*.egg-info