daf03fed08
Change-Id: I9073bf6ae950e0485b38a61322e4f648d9966c2b
47 lines
1.1 KiB
INI
47 lines
1.1 KiB
INI
[tox]
|
|
envlist = py27,pep8
|
|
|
|
[testenv]
|
|
distribute = False
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands = nosetests {posargs:--with-coverage astara/test/unit/}
|
|
sitepackages = False
|
|
|
|
[tox:jenkins]
|
|
|
|
[testenv:style]
|
|
deps = flake8
|
|
setuptools_git>=0.4
|
|
commands = flake8 astara setup.py
|
|
|
|
[testenv:pep8]
|
|
deps = {[testenv:style]deps}
|
|
commands = {[testenv:style]commands}
|
|
|
|
[testenv:doc]
|
|
deps = -r{toxinidir}/test-requirements.txt
|
|
commands =
|
|
sphinx-build doc/source doc/build
|
|
sphinx-build -a -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|
|
|
|
[testenv:cover]
|
|
setenv = NOSE_WITH_COVERAGE=1
|
|
|
|
[testenv:venv]
|
|
commands = {posargs}
|
|
|
|
[testenv:functional]
|
|
commands = nosetests -v ./astara/test/functional/
|
|
|
|
[flake8]
|
|
ignore = E133,E226,E241,E242,E731
|
|
exclude=.venv,.git,.tox,dist,doc,.idea
|
|
show-source = True
|
|
|
|
[testenv:genconfig]
|
|
commands = {toxinidir}/tools/generate_config_file_samples.sh
|
|
|
|
[testenv:releasenotes]
|
|
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
|