bump versions, fix shell check failures

This commit is contained in:
diginc
2017-03-03 23:13:11 -06:00
parent e8d5f0c1b4
commit d23338407c
3 changed files with 13 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ run_local = testinfra.get_backend(
def test_scripts_pass_shellcheck():
''' Make sure shellcheck does not find anything wrong with our shell scripts '''
shellcheck = "find . ! -path './pi-hole/*' -name '*.sh' -a ! -name 'gravity.sh' | while read file; do shellcheck $file; done;"
shellcheck = "find . -name '*.sh' | while read file; do shellcheck $file; done;"
results = run_local(shellcheck)
print results.stdout
assert '' == results.stdout