You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
970 B
33 lines
970 B
[tox] |
|
envlist = py35,py27,pep8 |
|
|
|
[testenv] |
|
usedevelop = True |
|
install_command = pip install -U -c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/queens/upper-constraints.txt} {opts} {packages} |
|
deps = |
|
-r{toxinidir}/requirements.txt |
|
-r{toxinidir}/test-requirements.txt |
|
setenv = PYTHONDONTWRITEBYTECODE=1 |
|
commands = |
|
coverage run --branch --source dracclient --omit "dracclient/tests*" -m unittest discover dracclient.tests |
|
coverage report -m --fail-under 90 |
|
|
|
[testenv:venv] |
|
commands = {posargs} |
|
|
|
[testenv:pep8] |
|
basepython = python2.7 |
|
commands = |
|
flake8 dracclient |
|
doc8 README.rst CONTRIBUTING.rst doc/source |
|
|
|
[testenv:docs] |
|
deps = |
|
-c{env:UPPER_CONSTRAINTS_FILE:https://opendev.org/openstack/requirements/raw/branch/stable/queens/upper-constraints.txt} |
|
-r{toxinidir}/requirements.txt |
|
-r{toxinidir}/doc/requirements.txt |
|
commands = python setup.py build_sphinx |
|
|
|
[flake8] |
|
max-complexity=15 |
|
show-source = True
|
|
|