Fix local bashate runs
My repository contained .test directory from different tests and that failed the bashate test, exclude it from bashate checks so that tox -e bashate works locally. Change-Id: I99c531d425cfc4464ec7461b339fd0b40ce13148
This commit is contained in:
parent
fb22ef61c7
commit
c4548a079a
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
|
||||
ROOT=$(readlink -fn $(dirname $0)/.. )
|
||||
find $ROOT -not -wholename \*.tox/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs -0 bashate -v
|
||||
find $ROOT -not -wholename \*.tox/\* -and -not -wholename \*.test/\* -and \( -name \*.sh -or -name \*rc -or -name functions\* \) -print0 | xargs -0 bashate -v
|
||||
|
Loading…
Reference in New Issue
Block a user