Fix to pass linters tests

Change-Id: I789ac5e8792097790d95b179919e6435439e852f
This commit is contained in:
Artur Zarzycki 2016-07-06 17:56:55 +02:00
parent 61749565b2
commit 43bbf2b9dc
4 changed files with 15 additions and 21 deletions

View File

@ -1,4 +1,4 @@
[gerrit]
host=review.fuel-infra.org
host=review.openstack.org
port=29418
project=nextgen/ms-rabbitmq.git
project=openstack/fuel-ccp-rabbitmq.git

View File

@ -1,10 +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
fgrep -q MAINTAINER $file
fgrep -q RUN $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,17 +1,14 @@
[tox]
minversion = 1.6
envlist = py34,py27,pypy,pep8
envlist = linters,bashate
skipsdist = True
[testenv:linters]
deps = yamllint
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
deps = bashate>=0.2
whitelist_externals = bash
commands = bash -c "find {toxinidir} -type f -name '*.sh' -not -path '*/.tox/*' -print0 | xargs -0 bashate -v"