summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/testify/.travis.govet.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/stretchr/testify/.travis.govet.sh')
-rwxr-xr-xvendor/github.com/stretchr/testify/.travis.govet.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/stretchr/testify/.travis.govet.sh b/vendor/github.com/stretchr/testify/.travis.govet.sh
new file mode 100755
index 000000000..f8fbba7a1
--- /dev/null
+++ b/vendor/github.com/stretchr/testify/.travis.govet.sh
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+cd "$(dirname $0)"
+DIRS=". assert require mock _codegen"
+set -e
+for subdir in $DIRS; do
+ pushd $subdir
+ go vet
+ popd
+done