Merge Debian packaging for release “1:0.12.2-2”.
[debian_python-lockfile.git] / tox.ini
blob750ad5f54540bb91a91ed265dfe6b635e861dd1d
1 # content of: tox.ini , put in same dir as setup.py
2 [tox]
3 envlist = py27,py32,py33,py34
5 [testenv]
6 deps = -r{toxinidir}/test-requirements.txt
7 commands=nosetests
9 [testenv:venv]
10 commands = {posargs}
12 [testenv:pep8]
13 deps = flake8
14 commands = flake8
16 [testenv:docs]
17 commands = python setup.py build_sphinx
19 [testenv:cover]
20 deps = {[testenv]deps}
21 coverage
22 commands =
23 nosetests --with-coverage --cover-erase --cover-package=lockfile --cover-inclusive []
25 [flake8]
26 exclude=.venv,.git,.tox,dist,doc
27 show-source = True