blob: 6dc83f713311f15a338e53b85eb4937ced259ee3 [file] [log] [blame]
James E. Blair1e8dd892012-05-30 09:15:05 -07001[tox]
zhaoxinyu363e5642013-09-18 16:05:24 -07002minversion = 1.6
Monty Taylor5f2feaf2013-09-19 07:47:01 -07003skipsdist = True
4envlist = pep8, py27
James E. Blairb0fcae42012-07-17 11:12:10 -07005
6[testenv]
James E. Blairf62d4282012-12-31 17:01:50 -08007# Set STATSD env variables so that statsd code paths are tested.
Ian Wienandff977bf2015-09-30 15:38:47 +10008setenv = STATSD_HOST=127.0.0.1
James E. Blairf62d4282012-12-31 17:01:50 -08009 STATSD_PORT=8125
Monty Taylorbc758832013-06-17 17:22:42 -040010 VIRTUAL_ENV={envdir}
James E. Blaird0e579a2013-12-23 15:41:23 -080011 OS_TEST_TIMEOUT=30
James E. Blair2a6cc762016-02-03 14:32:05 -080012passenv = ZUUL_TEST_ROOT
Monty Taylor5f2feaf2013-09-19 07:47:01 -070013usedevelop = True
zhaoxinyu363e5642013-09-18 16:05:24 -070014install_command = pip install {opts} {packages}
Monty Taylor49983152013-06-02 08:42:01 -040015deps = -r{toxinidir}/requirements.txt
16 -r{toxinidir}/test-requirements.txt
Monty Taylorbc758832013-06-17 17:22:42 -040017commands =
18 python setup.py testr --slowest --testr-args='{posargs}'
James E. Blair1e8dd892012-05-30 09:15:05 -070019
Paul Belangere23f5992016-06-03 23:44:15 -040020[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.
25deps = bindep
26commands = bindep test
27
James E. Blair1e8dd892012-05-30 09:15:05 -070028[testenv:pep8]
Joshua Hesketh29d99b72014-08-19 16:27:42 +100029commands = flake8 {posargs}
James E. Blaircdd00072012-06-08 19:17:28 -070030
31[testenv:cover]
Monty Taylorbc758832013-06-17 17:22:42 -040032commands =
33 python setup.py testr --coverage
James E. Blairff986a12012-05-30 14:56:51 -070034
Monty Taylorffd90ea2014-09-08 13:47:38 -070035[testenv:docs]
Antoine Mussod70f3d82014-01-10 16:36:44 +010036commands = python setup.py build_sphinx
37
James E. Blaircdd00072012-06-08 19:17:28 -070038[testenv:venv]
39commands = {posargs}
James E. Blaircb462342013-01-15 10:03:53 -080040
41[testenv:validate-layout]
42commands = zuul-server -c etc/zuul.conf-sample -t -l {posargs}
Monty Taylor6bef8ef2013-06-02 08:17:12 -040043
44[flake8]
Joshua Hesketh29d99b72014-08-19 16:27:42 +100045# These are ignored intentionally in openstack-infra projects;
46# please don't submit patches that solely correct them or enable them.
47ignore = E125,E129,H
Monty Taylor6bef8ef2013-06-02 08:17:12 -040048show-source = True
49exclude = .venv,.tox,dist,doc,build,*.egg