Add test framework

test-requirements.txt - Install yamllint
tox.ini - yaml linter
.zuul-yaml - run openstack-tox-linters job

Change-Id: I0fa58c9f06f7f5ea2400ee3a2eed891d5470049e
This commit is contained in:
Dean Troyer 2018-06-08 15:10:02 -05:00
parent 5375cc06c8
commit c5d3ce0840
4 changed files with 42 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*~
.tox

8
.zuul.yaml Normal file
View File

@ -0,0 +1,8 @@
---
- project:
check:
jobs:
- openstack-tox-linters
gate:
jobs:
- openstack-tox-linters

2
test-requirements.txt Normal file
View File

@ -0,0 +1,2 @@
PyYAML>=3.1.0
yamllint>=0.5.2

30
tox.ini Normal file
View File

@ -0,0 +1,30 @@
[tox]
envlist = linters
minversion = 2.3
skipsdist = True
[testenv]
basepython = python3
install_command = pip install -U {opts} {packages}
setenv = VIRTUAL_ENV={envdir}
OS_STDOUT_CAPTURE=1
OS_STDERR_CAPTURE=1
OS_TEST_TIMEOUT=60
deps = -r{toxinidir}/test-requirements.txt
[testenv:linters]
whitelist_externals = bash
commands =
bash -c "find {toxinidir} \
\( -name .tox -prune \) \
-o -type f -name '*.yaml' \
-print0 | xargs -0 yamllint"
[testenv:venv]
commands = {posargs}
[testenv:true]
# Use same environment directory as venv to save space and install time
envdir = {toxworkdir}/venv
commands = true
whitelist_externals = true