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.
62 lines
1.5 KiB
62 lines
1.5 KiB
[tox] |
|
minversion = 3.9.0 |
|
envlist = py3,pep8 |
|
skipsdist = True |
|
ignore_basepython_conflict=true |
|
|
|
[testenv] |
|
usedevelop = True |
|
install_command = pip install {opts} {packages} |
|
deps = |
|
-r{toxinidir}/requirements.txt |
|
-r{toxinidir}/test-requirements.txt |
|
commands = stestr run --slowest {posargs} |
|
|
|
[testenv:pep8] |
|
basepython = python3 |
|
deps = |
|
hacking>=3.1.0,<4.0.0 # Apache-2.0 |
|
doc8>=0.6.0 # Apache-2.0 |
|
flake8-import-order>=0.17.1 # LGPLv3 |
|
pycodestyle>=2.0.0,<2.7.0 # MIT |
|
Pygments>=2.2.0 # BSD |
|
commands = |
|
flake8 {posargs} |
|
|
|
[testenv:venv] |
|
basepython = python3 |
|
commands = {posargs} |
|
|
|
[testenv:cover] |
|
basepython = python3 |
|
setenv = |
|
PYTHON=coverage run --source scciclient --parallel-mode |
|
commands = |
|
stestr run {posargs} |
|
coverage combine |
|
coverage html -d cover |
|
coverage xml -o cover/coverage.xml |
|
coverage report |
|
|
|
[testenv:docs] |
|
basepython = python3 |
|
deps = |
|
-r{toxinidir}/requirements.txt |
|
-r{toxinidir}/doc/requirements.txt |
|
commands = |
|
sphinx-build -b html doc/source doc/build/html |
|
|
|
[flake8] |
|
ignore = W503,W504,W605 |
|
show-source = True |
|
builtins = _ |
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build |
|
# [H106] Don't put vim configuration in source files. |
|
# [H203] Use assertIs(Not)None to check for None. |
|
# [H204] Use assert(Not)Equal to check for equality. |
|
# [H205] Use assert(Greater|Less)(Equal) for comparison. |
|
# [H904] Delay string interpolations at logging calls. |
|
enable-extensions=H106,H203,H204,H205,H904 |
|
filename = *.py |
|
import-order-style = pep8 |
|
application-import-names = scciclient
|
|
|