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:
Andreas Jaeger 2014-10-01 19:48:09 +02:00
parent fb22ef61c7
commit c4548a079a
1 changed files with 1 additions and 1 deletions

View File

@ -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