tox.ini 295 Bytes
Newer Older
Littichai Buddaken's avatar
Littichai Buddaken committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
[tox]
envlist = py27, py35, lint

[testenv]
commands =
    python setup.py nosetests --with-coverage --cover-package=diff --cover-erase --cover-html
    python setup.py sdist
deps =
    setuptools>=17.1

[testenv:lint]
commands=flake8 diff
basepython=python2.7
deps=
    flake8
    flake8-print