4522ff5324
- also added skip-missing-interpreters option http://tox.readthedocs.io/en/latest/config.html#confval-skip_missing_interpreters=BOOL Change-Id: I461677ac11e59e7931931b3f5993bbcdf1192369
24 lines
356 B
INI
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
|