blob: f1b5b86fc322610450f15a7cdbae56d5978fe40f [file] [log] [blame]
DavidPurcell663aedf2017-01-03 10:01:14 -05001[tox]
DavidPurcell029d8c32017-01-06 15:27:41 -05002minversion = 1.6
Felipe Monteirodf958702017-02-27 03:53:50 +00003envlist = pep8,py35,py27
DavidPurcell663aedf2017-01-03 10:01:14 -05004skipsdist = True
5
6[testenv]
7usedevelop = True
8install_command = pip install -c{env:UPPER_CONSTRAINTS_FILE:https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt} {opts} {packages}
9setenv =
10 VIRTUAL_ENV={envdir}
Felipe Monteiro7de19052017-08-06 05:47:27 +010011 OS_TEST_PATH=./patrole_tempest_plugin/tests/unit
12 LANGUAGE=en_US
13 LC_ALL=en_US.utf-8
DavidPurcell663aedf2017-01-03 10:01:14 -050014 PYTHONWARNINGS=default::DeprecationWarning
Felipe Monteirodf958702017-02-27 03:53:50 +000015passenv = OS_STDOUT_CAPTURE OS_STDERR_CAPTURE OS_TEST_TIMEOUT OS_TEST_LOCK_PATH OS_TEST_PATH http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
16whitelist_externals = find
DavidPurcell029d8c32017-01-06 15:27:41 -050017deps = -r{toxinidir}/requirements.txt
18 -r{toxinidir}/test-requirements.txt
Jeremy Liue1014be2017-03-22 18:33:00 -070019commands =
DavidPurcell029d8c32017-01-06 15:27:41 -050020 find . -type f -name "*.pyc" -delete
Felipe Monteiro7de19052017-08-06 05:47:27 +010021 ostestr {posargs}
DavidPurcell663aedf2017-01-03 10:01:14 -050022
23[testenv:pep8]
24commands = flake8 {posargs}
Jeremy Liu78b19252017-04-01 16:19:09 +080025 check-uuid --package patrole_tempest_plugin.tests.api
Felipe Monteirodf958702017-02-27 03:53:50 +000026
27[testenv:uuidgen]
Jeremy Liu78b19252017-04-01 16:19:09 +080028commands = check-uuid --package patrole_tempest_plugin.tests.api --fix
DavidPurcell663aedf2017-01-03 10:01:14 -050029
30[testenv:venv]
31commands = {posargs}
32
33[testenv:cover]
Joseph Abadae7d7bb2017-04-19 12:07:13 -040034commands = rm -rf *.pyc
35 rm -rf cover
36 rm -f .coverage
37 nosetests {posargs}
Felipe Monteiro1ee5f4d2017-03-04 18:07:27 +000038setenv = VIRTUAL_ENV={envdir}
39 NOSE_WITH_COVERAGE=1
40 NOSE_COVER_BRANCHES=1
41 NOSE_COVER_PACKAGE=patrole_tempest_plugin
42 NOSE_COVER_HTML=1
43 NOSE_COVER_HTML_DIR={toxinidir}/cover
44 NOSE_WHERE=patrole_tempest_plugin/tests/unit
45whitelist_externals = nosetests
Joseph Abadae7d7bb2017-04-19 12:07:13 -040046 rm
DavidPurcell663aedf2017-01-03 10:01:14 -050047
48[testenv:docs]
49commands = python setup.py build_sphinx
50
51[testenv:releasenotes]
52commands =
53 sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
54
55[testenv:debug]
HaiJieZhangae9db6f2017-03-23 11:28:16 +080056commands = oslo_debug_helper -t patrole_tempest_plugin/tests {posargs}
DavidPurcell663aedf2017-01-03 10:01:14 -050057
58[flake8]
Felipe Monteiro4bf66a22017-05-07 14:44:21 +010059enable-extensions = H106,H203,H904
DavidPurcell663aedf2017-01-03 10:01:14 -050060show-source = True
Felipe Monteiro4bf66a22017-05-07 14:44:21 +010061# E123, E125 skipped as they are invalid PEP-8.
Felipe Monteirof6eb8622017-08-06 06:08:02 +010062#
63# H405 is another one that is good as a guideline, but sometimes
64# multiline doc strings just don't have a natural summary
65# line. Rejecting code for this reason is wrong.
66ignore = E123,E125,H405
DavidPurcell663aedf2017-01-03 10:01:14 -050067builtins = _
68exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build
Felipe Monteiro0854ded2017-05-05 16:30:55 +010069
70[hacking]
71local-check-factory = patrole_tempest_plugin.hacking.checks.factory