728fafad2d
This patch moves fernet keys to be managed directly as native Kubernetes secrets with rotations. Change-Id: Ib6b5e3b65736eb882222ff28719e39e5d8a4f8cd
42 lines
671 B
INI
42 lines
671 B
INI
[tox]
|
|
minversion = 3.1.1
|
|
envlist = py37
|
|
|
|
[testenv]
|
|
usedevelop = True
|
|
passenv =
|
|
OS_*
|
|
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]
|
|
skip_install = true
|
|
deps =
|
|
-r{toxinidir}/doc/requirements.txt
|
|
commands =
|
|
doc8 doc/source
|
|
sphinx-build -W -b html -d doc/build/doctrees doc/source doc/build/html
|