This commit is contained in:
emile 2015-09-22 11:29:41 +02:00
parent 967e033b7e
commit 8825a26ae6
593 changed files with 88072 additions and 28 deletions

View file

@ -17,6 +17,7 @@ find_dirs() {
find . -not \( \
\( \
-path './integration/*' \
-o -path './Godeps/*' \
-o -path './.git/*' \
\) \
-prune \
@ -33,7 +34,7 @@ TESTS_FAILED=()
for dir in $TESTDIRS; do
echo '+ go test' $TESTFLAGS "${dir}"
go test ${TESTFLAGS} ${dir}
godep go test ${TESTFLAGS} ${dir}
if [ $? != 0 ]; then
TESTS_FAILED+=("$dir")
echo