Skip to content

Commit

Permalink
Skip vet errors thrown in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
trevrosen committed Nov 5, 2017
1 parent 3254361 commit d23b159
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ pushd $PWD/..
echo $result

# If a `go test` command has failures, it will exit 1
if [ $? -ne 0 ]; then
# a go vet check should exit 2
if [ $? -eq 1 ]; then
fail_packages+=($package);
fi;
if [ -f tmp.cov ]; then
Expand Down

0 comments on commit d23b159

Please sign in to comment.