2fd41f4c9c
- add multinode support for devstack nodes - write clouds.yaml and ssh_config file to devstack-tobiko-deploy source dir - update tobiko.conf file - create simple functional test cases to test vagrant configuration - remove local projects synchronization Change-Id: I9d2517d5fa6c72b98726af8aa3ba9fa8bcf0918f
38 lines
594 B
INI
38 lines
594 B
INI
[tox]
|
|
skipsdist = True
|
|
envlist = linters,docs
|
|
minversion = 3.8.0
|
|
|
|
|
|
[testenv]
|
|
usedevelop=False
|
|
skip_install = true
|
|
|
|
|
|
[testenv:linters]
|
|
deps =
|
|
-r {toxinidir}/linters-requirements.txt
|
|
|
|
commands =
|
|
pre-commit --version
|
|
pre-commit autoupdate
|
|
pre-commit run --all-files
|
|
pre-commit install
|
|
|
|
|
|
[testenv:docs]
|
|
deps =
|
|
-r{toxinidir}/doc/requirements.txt
|
|
changedir = doc/source
|
|
commands =
|
|
sphinx-build -W -b html . ../build/html
|
|
|
|
|
|
[testenv:functional]
|
|
deps =
|
|
-r test-requirements.txt
|
|
setenv =
|
|
TESTS_DIR = {toxinidir}/tests/functional
|
|
commands =
|
|
pytest {posargs:{env:TESTS_DIR}}
|