diff --git a/jenkins-tp/jobs/builders/ng-build-specs.sh b/jenkins-tp/jobs/builders/ng-build-specs.sh index d1aa250..a35dc16 100755 --- a/jenkins-tp/jobs/builders/ng-build-specs.sh +++ b/jenkins-tp/jobs/builders/ng-build-specs.sh @@ -7,4 +7,4 @@ tox -e docs ls -al doc/build/html/ echo "** Uploading HTML docs to the server:" -rsync -v -r --delete -e ssh doc/build/html docs-publisher@docs.ng.mirantis.net:~/ \ No newline at end of file +rsync -v -r --delete -e ssh doc/build/html docs-publisher@docs.ng.mirantis.net:~/ diff --git a/test-requirements.txt b/test-requirements.txt index 520e95b..bfd831f 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -1 +1,2 @@ bashate>=0.2 +yamllint diff --git a/tox.ini b/tox.ini index 7966d33..ef3ff5b 100644 --- a/tox.ini +++ b/tox.ini @@ -10,13 +10,10 @@ deps = usedevelop = False [testenv:linters] -deps = yamllint commands = {toxinidir}/tools/run-check-yaml-syntax.sh - -[testenv:bashate] -whitelist_externals = bash -commands = bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v -iE006" + # bashate check + bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v -iE006" [testenv:venv] commands = {posargs}