Files
openstack-operator/tox.ini
Mohammed Naser f354f48ef0 stop using opendev registry
We pretty much always need to build the image for the operator so we
should just instead use that as our buildset registry too.

Change-Id: I5c60f6261df9697bd589e796521c613cff5af8f1
2020-04-26 12:53:02 -04:00

39 lines
634 B
INI

[tox]
minversion = 3.1.1
envlist = py37
[testenv]
usedevelop = True
deps =
-rtest-requirements.txt
-rrequirements.txt
commands =
stestr run {posargs}
stestr slowest
[testenv:update-zuul-jobs]
deps =
dockerfile
ruamel.yaml
commands =
{toxinidir}/hack/update-zuul-jobs.py
[testenv:linters]
basepython = python3.7
commands =
pylint openstack_operator
flake8 openstack_operator
[testenv:kopf]
deps =
-rrequirements.txt
commands =
kopf run {posargs}
[testenv:docs]
deps =
-r{toxinidir}/doc/requirements.txt
commands =
doc8 doc/source
sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html