| garciadeblas | 5519577 | 2017-09-13 08:28:39 +0200 | [diff] [blame^] | 1 | [tox] |
| 2 | #envlist = py27,py3 | ||||
| 3 | envlist = py27 | ||||
| 4 | toxworkdir={homedir}/.tox | ||||
| 5 | |||||
| 6 | [testenv] | ||||
| 7 | deps=nose | ||||
| 8 | mock | ||||
| 9 | commands=nosetests | ||||
| 10 | |||||
| 11 | [testenv:flake8] | ||||
| 12 | basepython = python | ||||
| 13 | deps = flake8 | ||||
| 14 | commands = | ||||
| 15 | flake8 setup.py | ||||
| 16 | |||||
| 17 | [testenv:build] | ||||
| 18 | basepython = python | ||||
| 19 | deps = stdeb | ||||
| 20 | setuptools-version-command | ||||
| 21 | commands = python setup.py --command-packages=stdeb.command bdist_deb | ||||
| 22 | |||||