Skip to content

Commit

Permalink
Merge pull request #396 from 99designs/remove-ci-exclusion
Browse files Browse the repository at this point in the history
Run generate ./... and test ./... in circle
  • Loading branch information
vektah authored Oct 25, 2018
2 parents fd5d9ec + 686c71a commit 184e48c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -eu

echo "### go generating"
go generate $(go list ./... | grep -v codegen/tests)
go generate ./...

if [[ $(git --no-pager diff) ]] ; then
echo "you need to run go generate"
Expand All @@ -12,7 +12,7 @@ if [[ $(git --no-pager diff) ]] ; then
fi

echo "### running testsuite"
go test -race $(go list ./... | grep -v codegen/tests)
go test -race ./...

echo "### linting"
gometalinter --vendor ./...

0 comments on commit 184e48c

Please sign in to comment.