Jay Pipes | a6aa5f2 | 2012-07-24 19:40:29 -0400 | [diff] [blame] | 1 | [tox] |
| 2 | envlist = pep8 |
| 3 | |
| 4 | [testenv] |
| 5 | setenv = VIRTUAL_ENV={envdir} |
| 6 | NOSE_WITH_OPENSTACK=1 |
| 7 | NOSE_OPENSTACK_COLOR=1 |
| 8 | NOSE_OPENSTACK_RED=15 |
| 9 | NOSE_OPENSTACK_YELLOW=3 |
| 10 | NOSE_OPENSTACK_SHOW_ELAPSED=1 |
| 11 | NOSE_OPENSTACK_STDOUT=1 |
| 12 | deps = -r{toxinidir}/tools/pip-requires |
| 13 | -r{toxinidir}/tools/test-requires |
| 14 | commands = nosetests {posargs} |
| 15 | |
| 16 | [testenv:pep8] |
Zhongyue Luo | e6321ef | 2012-09-17 16:45:50 +0800 | [diff] [blame] | 17 | deps = pep8==1.3.3 |
Matthew Treinish | 8b37289 | 2012-12-07 17:13:16 -0500 | [diff] [blame] | 18 | commands = python tools/hacking.py --ignore=N4,E121,E122,E125,E126 --repeat --show-source --exclude=.venv,.tox,dist,doc,openstack . |