Turn bashate warnings into errors 14/68214/4
authorCédric Ollivier <cedric.ollivier@orange.com>
Wed, 10 Jul 2019 18:20:39 +0000 (20:20 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Thu, 11 Jul 2019 08:09:02 +0000 (10:09 +0200)
It also fixes the warning.

Change-Id: Ia24208590994418dc8a200e7336cf8a62f0976d3
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
build.sh
tox.ini

index 46ff488..cdb9bec 100644 (file)
--- a/build.sh
+++ b/build.sh
@@ -28,7 +28,8 @@ for dir in ${amd64_dirs}; do
 done
 [ ! -z "${amd64_dirs}" ] &&
     (docker rmi \
-        "${repo}/functest-kubernetes-core:amd64-latest" golang:alpine3.9 || true)
+        "${repo}/functest-kubernetes-core:amd64-latest" \
+        golang:alpine3.9 || true)
 find . -name Dockerfile -exec git checkout {} +
 
 find . -name Dockerfile -exec sed -i \
diff --git a/tox.ini b/tox.ini
index e512141..a58833c 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -48,4 +48,4 @@ commands = nosetests functest_kubernetes
 basepython = python2.7
 files =
   build.sh
-commands = bashate {[testenv:bashate]files}
+commands = bashate -e E005,E006,E042,E043 {[testenv:bashate]files}