Files
deb-python-lesscpy/tox.ini
Sascha Peilicke 1097d95215 Name all tests consistently
Let all of them start with 'test_'. And move __main__.py into
__init__.py.
2014-02-02 17:35:38 +01:00

18 lines
355 B
INI

[tox]
envlist = py26,py27,py33,flake8
[testenv]
deps = -r{toxinidir}/test-requirements.txt
commands = python test/__init__.py -v
[testenv:pep8]
commands = pep8 --repeat --show-source --ignore=E501 --exclude=.venv,.tox,build,dist,doc
[testenv:flake8]
commands = flake8
[flake8]
ignore = E501
show-source = True
exclude = .venv,.tox,build,dist,doc,*egg