The sanest way to discover and run tests across py27, py33, py34, tox and Travis-CI and 'setup.py test'.
15 lines
236 B
INI
15 lines
236 B
INI
[tox]
|
|
envlist = py26,py27,py33,flake8
|
|
|
|
[testenv]
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = nosetests -v
|
|
|
|
[testenv:flake8]
|
|
commands = flake8
|
|
|
|
[flake8]
|
|
ignore = E501
|
|
show-source = True
|
|
exclude = .venv,.tox,build,dist,doc,*egg
|