James E. Blair | 1e8dd89 | 2012-05-30 09:15:05 -0700 | [diff] [blame] | 1 | [tox] |
zhaoxinyu | 363e564 | 2013-09-18 16:05:24 -0700 | [diff] [blame] | 2 | minversion = 1.6 |
Monty Taylor | 5f2feaf | 2013-09-19 07:47:01 -0700 | [diff] [blame] | 3 | skipsdist = True |
| 4 | envlist = pep8, py27 |
James E. Blair | b0fcae4 | 2012-07-17 11:12:10 -0700 | [diff] [blame] | 5 | |
| 6 | [testenv] |
James E. Blair | f62d428 | 2012-12-31 17:01:50 -0800 | [diff] [blame] | 7 | # Set STATSD env variables so that statsd code paths are tested. |
Ian Wienand | ff977bf | 2015-09-30 15:38:47 +1000 | [diff] [blame] | 8 | setenv = STATSD_HOST=127.0.0.1 |
James E. Blair | f62d428 | 2012-12-31 17:01:50 -0800 | [diff] [blame] | 9 | STATSD_PORT=8125 |
Monty Taylor | bc75883 | 2013-06-17 17:22:42 -0400 | [diff] [blame] | 10 | VIRTUAL_ENV={envdir} |
James E. Blair | 267e516 | 2017-04-07 10:08:20 -0700 | [diff] [blame] | 11 | OS_TEST_TIMEOUT=120 |
James E. Blair | 1c236df | 2017-02-01 14:07:24 -0800 | [diff] [blame] | 12 | passenv = ZUUL_TEST_ROOT OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_LOG_CAPTURE OS_LOG_DEFAULTS |
Monty Taylor | 5f2feaf | 2013-09-19 07:47:01 -0700 | [diff] [blame] | 13 | usedevelop = True |
zhaoxinyu | 363e564 | 2013-09-18 16:05:24 -0700 | [diff] [blame] | 14 | install_command = pip install {opts} {packages} |
Monty Taylor | 4998315 | 2013-06-02 08:42:01 -0400 | [diff] [blame] | 15 | deps = -r{toxinidir}/requirements.txt |
| 16 | -r{toxinidir}/test-requirements.txt |
Monty Taylor | bc75883 | 2013-06-17 17:22:42 -0400 | [diff] [blame] | 17 | commands = |
Clark Boylan | 3b6bb10 | 2017-04-07 17:37:06 -0700 | [diff] [blame] | 18 | python setup.py test --slowest --testr-args='{posargs}' |
James E. Blair | 1e8dd89 | 2012-05-30 09:15:05 -0700 | [diff] [blame] | 19 | |
Paul Belanger | e23f599 | 2016-06-03 23:44:15 -0400 | [diff] [blame] | 20 | [testenv:bindep] |
| 21 | # Do not install any requirements. We want this to be fast and work even if |
| 22 | # system dependencies are missing, since it's used to tell you what system |
| 23 | # dependencies are missing! This also means that bindep must be installed |
| 24 | # separately, outside of the requirements files. |
| 25 | deps = bindep |
| 26 | commands = bindep test |
| 27 | |
James E. Blair | 1e8dd89 | 2012-05-30 09:15:05 -0700 | [diff] [blame] | 28 | [testenv:pep8] |
Monty Taylor | 74fa386 | 2016-06-02 07:39:49 +0300 | [diff] [blame] | 29 | # streamer is python3 only, so we need to run flake8 in python3 |
| 30 | basepython = python3 |
Joshua Hesketh | 29d99b7 | 2014-08-19 16:27:42 +1000 | [diff] [blame] | 31 | commands = flake8 {posargs} |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 32 | |
| 33 | [testenv:cover] |
Monty Taylor | bc75883 | 2013-06-17 17:22:42 -0400 | [diff] [blame] | 34 | commands = |
Clark Boylan | 3b6bb10 | 2017-04-07 17:37:06 -0700 | [diff] [blame] | 35 | python setup.py test --coverage |
James E. Blair | ff986a1 | 2012-05-30 14:56:51 -0700 | [diff] [blame] | 36 | |
Monty Taylor | ffd90ea | 2014-09-08 13:47:38 -0700 | [diff] [blame] | 37 | [testenv:docs] |
Antoine Musso | d70f3d8 | 2014-01-10 16:36:44 +0100 | [diff] [blame] | 38 | commands = python setup.py build_sphinx |
| 39 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 40 | [testenv:venv] |
| 41 | commands = {posargs} |
James E. Blair | cb46234 | 2013-01-15 10:03:53 -0800 | [diff] [blame] | 42 | |
| 43 | [testenv:validate-layout] |
| 44 | commands = zuul-server -c etc/zuul.conf-sample -t -l {posargs} |
Monty Taylor | 6bef8ef | 2013-06-02 08:17:12 -0400 | [diff] [blame] | 45 | |
James E. Blair | f88b817 | 2017-01-24 13:37:21 -0800 | [diff] [blame] | 46 | [testenv:nodepool] |
| 47 | setenv = |
| 48 | OS_TEST_PATH = ./tests/nodepool |
Clark Boylan | 3b6bb10 | 2017-04-07 17:37:06 -0700 | [diff] [blame] | 49 | commands = python setup.py test --slowest --testr-args='--concurrency=1 {posargs}' |
James E. Blair | f88b817 | 2017-01-24 13:37:21 -0800 | [diff] [blame] | 50 | |
Monty Taylor | 6bef8ef | 2013-06-02 08:17:12 -0400 | [diff] [blame] | 51 | [flake8] |
Joshua Hesketh | 29d99b7 | 2014-08-19 16:27:42 +1000 | [diff] [blame] | 52 | # These are ignored intentionally in openstack-infra projects; |
| 53 | # please don't submit patches that solely correct them or enable them. |
David Shrewsbury | 699a6b2 | 2017-05-19 09:38:36 -0400 | [diff] [blame] | 54 | ignore = E125,E129,E402,H,W503 |
Monty Taylor | 6bef8ef | 2013-06-02 08:17:12 -0400 | [diff] [blame] | 55 | show-source = True |
| 56 | exclude = .venv,.tox,dist,doc,build,*.egg |