added faafo example

This commit is contained in:
Sebastian Rieger
2020-04-21 15:46:58 +02:00
parent b7143441f2
commit 5b953bb5ed
38 changed files with 1851 additions and 0 deletions

27
faafo/tox.ini Normal file
View File

@ -0,0 +1,27 @@
[tox]
minversion = 1.6
envlist = pep8
skipsdist = True
[testenv]
usedevelop = True
deps = -r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
install_command = pip install -U {opts} {packages}
[testenv:venv]
commands = {posargs}
[testenv:docs]
commands = python setup.py build_sphinx
[testenv:genconfig]
commands =
oslo-config-generator --config-file etc/oslo-config-generator/faafo.conf
[testenv:pep8]
commands = flake8 {posargs}
[flake8]
show-source = True
exclude=.venv,.git,.tox,*egg*,build,*openstack/common*