Joshua Hesketh | a6e26f5 | 2013-07-29 11:51:20 +1000 | [diff] [blame] | 1 | # Tox (http://tox.testrun.org/) is a tool for running tests |
| 2 | # in multiple virtualenvs. This configuration file will run the |
| 3 | # test suite on all supported python versions. To use it, "pip install tox" |
| 4 | # and then run "tox" from this directory. |
| 5 | |
| 6 | [tox] |
Joshua Hesketh | 5cd8ea3 | 2014-03-27 15:28:00 +1100 | [diff] [blame] | 7 | envlist = pep8, py27 |
Joshua Hesketh | a6e26f5 | 2013-07-29 11:51:20 +1000 | [diff] [blame] | 8 | |
| 9 | [testenv] |
Joshua Hesketh | a6e26f5 | 2013-07-29 11:51:20 +1000 | [diff] [blame] | 10 | setenv = VIRTUAL_ENV={envdir} |
| 11 | LANG=en_US.UTF-8 |
| 12 | LANGUAGE=en_US:en |
| 13 | LC_ALL=C |
Joshua Hesketh | 3b7765d | 2013-11-18 13:06:20 +1100 | [diff] [blame] | 14 | usedevelop = True |
| 15 | install_command = pip install {opts} {packages} |
Joshua Hesketh | 27a0e27 | 2013-08-12 10:21:09 +1000 | [diff] [blame] | 16 | deps = -r{toxinidir}/requirements.txt |
Joshua Hesketh | a6e26f5 | 2013-07-29 11:51:20 +1000 | [diff] [blame] | 17 | -r{toxinidir}/test-requirements.txt |
Joshua Hesketh | 27a0e27 | 2013-08-12 10:21:09 +1000 | [diff] [blame] | 18 | commands = |
| 19 | python setup.py testr --slowest --testr-args='{posargs}' |
| 20 | |
| 21 | [tox:jenkins] |
| 22 | downloadcache = ~/cache/pip |
| 23 | |
| 24 | [testenv:pep8] |
| 25 | commands = flake8 |
| 26 | |
| 27 | [testenv:cover] |
| 28 | commands = |
| 29 | python setup.py testr --coverage |
| 30 | |
Joshua Hesketh | 27a0e27 | 2013-08-12 10:21:09 +1000 | [diff] [blame] | 31 | [testenv:venv] |
| 32 | commands = {posargs} |
| 33 | |
| 34 | [flake8] |
| 35 | ignore = E125,H |
| 36 | show-source = True |
| 37 | exclude = .venv,.tox,dist,doc,build,*.egg |