Fix to pass linters tests

Change-Id: I83bfa24ee272eb71538da784f9941e839ae0cbb3
This commit is contained in:
Artur Zarzycki 2016-07-20 12:36:30 +02:00
parent 0c7492eb88
commit 7dd4c2a0d1
4 changed files with 16 additions and 17 deletions

2
test-requirements.txt Normal file
View File

@ -0,0 +1,2 @@
yamllint>=1.3.2
bashate>=0.2

View File

@ -1,9 +0,0 @@
#!/bin/bash
### Temp docker syntax checker script. Doesnt really check something...
set -e
for file in $(find . -name 'Dockerfile.j2')
do
fgrep -q FROM $file || echo 'Miss/ wrong FROM section in file' $file
fgrep -q MAINTAINER $file || echo 'Miss/ wrong MAINTAINER section in file' $file
done

7
tools/run-check-yaml-syntax.sh Executable file
View File

@ -0,0 +1,7 @@
#!/bin/bash
### Temp yaml syntax checker script.
set -e
for file in $(find . -name '*.yaml'); do
yamllint -d relaxed $file
done

15
tox.ini
View File

@ -1,16 +1,15 @@
[tox]
minversion = 1.6
envlist = py34,py27,pypy,pep8
envlist = linters,bashate
skipsdist = True
[testenv]
deps = -r{toxinidir}/test-requirements.txt
[testenv:linters]
commands =
{toxinidir}/tools/run-check-docker-syntax.sh
[testenv:pep8]
commands =
{toxinidir}/tools/run-check-docker-syntax.sh
{toxinidir}/tools/run-check-yaml-syntax.sh
[testenv:bashate]
commands =
{toxinidir}/tools/run-check-docker-syntax.sh
whitelist_externals = bash
commands = bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v"