71 lines
1.7 KiB
INI
Raw Normal View History

2013-08-08 10:34:06 -04:00
[tox]
minversion = 1.6
skipsdist = True
envlist = py34,py27,pep8
2013-08-08 10:34:06 -04:00
[testenv]
setenv = VIRTUAL_ENV={envdir}
usedevelop = True
install_command = pip install {opts} {packages}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --testr-args='{posargs}'
[tox:jenkins]
downloadcache = ~/cache/pip
2013-08-08 10:34:06 -04:00
[testenv:releasenotes]
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees \
-b html releasenotes/source releasenotes/build/html
2013-08-08 10:34:06 -04:00
[testenv:pep8]
commands =
flake8 {posargs}
# Run bashate during pep8 runs to ensure violations are caught by
# the check and gate queues.
bashate tools/enable-pre-commit-hook.sh \
contrib/ci/pre_test_hook.sh \
contrib/ci/post_test_hook.sh \
devstack/plugin.sh \
tools/cover.sh \
run_tests.sh
2013-08-08 10:34:06 -04:00
[testenv:genconfig]
whitelist_externals = bash
commands =
oslo-config-generator --config-file etc/oslo-config-generator/manila.conf
2013-08-08 10:34:06 -04:00
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
2013-08-08 10:34:06 -04:00
[testenv:cover]
commands = {toxinidir}/tools/cover.sh {posargs}
2013-08-08 10:34:06 -04:00
[testenv:pylint]
deps = -r{toxinidir}/requirements.txt
2013-08-08 10:34:06 -04:00
pylint==0.26.0
whitelist_externals = bash
2013-08-08 10:34:06 -04:00
commands = bash tools/lintstack.sh
[testenv:lint]
deps = -r{toxinidir}/requirements.txt
pylint==0.26.0
commands = python tools/lintstack.py check
2013-08-08 10:34:06 -04:00
[flake8]
# Following checks are ignored on purpose:
#
# H904 wrap long lines in parentheses instead of a backslash
# reason: removed in hacking (https://review.openstack.org/#/c/101701/)
ignore = H904
2013-08-08 10:34:06 -04:00
builtins = _
exclude = .venv,.tox,dist,doc,openstack,*egg
[hacking]
import_exceptions =
manila.i18n
local-check-factory = manila.hacking.checks.factory