2013-01-24 17:42:57 +00:00
|
|
|
[tox]
|
2015-12-26 07:54:26 +00:00
|
|
|
envlist = py34,py27,pep8
|
2013-12-09 14:23:46 +00:00
|
|
|
minversion = 1.6
|
|
|
|
skipsdist = True
|
2013-01-24 17:42:57 +00:00
|
|
|
|
|
|
|
[testenv]
|
2013-12-09 14:23:46 +00:00
|
|
|
usedevelop = True
|
2013-12-11 16:50:02 +00:00
|
|
|
install_command = pip install -U {opts} {packages}
|
2014-01-16 08:43:21 +00:00
|
|
|
deps= -r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/test-requirements.txt
|
2013-01-24 17:42:57 +00:00
|
|
|
commands=
|
2013-09-30 07:56:33 +00:00
|
|
|
python setup.py testr --slowest --testr-args='{posargs}'
|
2013-01-24 17:42:57 +00:00
|
|
|
|
|
|
|
[testenv:pep8]
|
2013-06-20 05:32:55 +00:00
|
|
|
commands =
|
|
|
|
flake8 {posargs}
|
2014-03-20 01:56:27 +00:00
|
|
|
dib-lint
|
2013-01-24 17:42:57 +00:00
|
|
|
|
|
|
|
[testenv:venv]
|
|
|
|
commands = {posargs}
|
|
|
|
|
2015-09-30 09:55:40 +00:00
|
|
|
[testenv:func]
|
|
|
|
envdir = {toxworkdir}/venv
|
|
|
|
commands = {toxinidir}/tests/run_functests.sh {posargs}
|
|
|
|
|
2013-01-24 17:42:57 +00:00
|
|
|
[testenv:cover]
|
|
|
|
setenv = PYTHON=coverage run --source diskimage_builder
|
|
|
|
commands = bash -c 'if [ ! -d ./.testrepository ] ; then testr init ; fi'
|
|
|
|
bash -c 'testr run --parallel ; RET=$? ; coverage combine ; coverage html -d ./cover $OMIT && exit $RET'
|
|
|
|
|
2015-02-09 20:58:58 +00:00
|
|
|
[testenv:docs]
|
|
|
|
commands = python setup.py build_sphinx
|
|
|
|
|
2016-03-14 03:29:28 +00:00
|
|
|
[testenv:releasenotes]
|
|
|
|
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
|
2013-06-20 05:32:55 +00:00
|
|
|
[flake8]
|
2014-11-17 12:19:56 +00:00
|
|
|
ignore = E125,H202,H302,H803
|
2015-02-07 10:30:02 +00:00
|
|
|
exclude = .venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build,conf.py
|