summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/stretchr/testify/.travis.govet.sh
blob: f8fbba7a1be1cd455f75175502cf018308db0820 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

cd "$(dirname $0)"
DIRS=". assert require mock _codegen"
set -e
for subdir in $DIRS; do
  pushd $subdir
  go vet
  popd
done