Merge remote-tracking branch 'starlingx/master' into HEAD

Change-Id: I3b334b4eabc4d90d3e080870416b2a8be68855a6
Signed-off-by: Scott Little <scott.little@windriver.com>
This commit is contained in:
Scott Little 2019-01-23 15:54:05 -05:00
commit f303ca4f0a
1 changed files with 9 additions and 4 deletions

13
tox.ini
View File

@ -23,19 +23,24 @@ commands =
-name \*.sh \ -name \*.sh \
-print0 | xargs -0 bashate -iE006 -v" -print0 | xargs -0 bashate -iE006 -v"
bash -c "find {toxinidir} \ bash -c "find {toxinidir} \
\( -name middleware/io-monitor/recipes-common/io-monitor/io-monitor/io_monitor/test-tools/yaml/* -prune \) \ \( -name .tox -prune \) \
-o \( -name .tox -prune \) \
-o -type f -name '*.yaml' \ -o -type f -name '*.yaml' \
-print0 | xargs -0 yamllint" -print0 | xargs -0 yamllint"
[flake8]
exclude=.tox
# H102 Apache 2.0 license header not found
ignore=H102
[testenv:pep8] [testenv:pep8]
basepython = python3 basepython = python3
usedevelop = False usedevelop = False
skip_install = True skip_install = True
# hacking pins the version of flake8
deps = deps =
pep8 hacking!=0.13.0,<0.14,>=0.12.0
commands = commands =
pep8 flake8
[testenv:venv] [testenv:venv]
basepython = python3 basepython = python3