Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
errordeveloper committed Sep 4, 2018
1 parent 16f80fd commit ef3e109
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ install-build-deps:

.PHONY: test
test: generate
@git diff --exit-code pkg/nodebootstrap/assets.go > /dev/null
@git diff --exit-code ./pkg/eks/mocks > /dev/null
@go test -v -covermode=count -coverprofile=coverage.out ./pkg/... ./cmd/...
git diff --exit-code pkg/nodebootstrap/assets.go > /dev/null || (git diff; exit 1)
git diff --exit-code ./pkg/eks/mocks > /dev/null || (git diff; exit 1)
go test -v -covermode=count -coverprofile=coverage.out ./pkg/... ./cmd/...
@test -z $(COVERALLS_TOKEN) || goveralls -coverprofile=coverage.out -service=circle-ci

.PHONY: integration-test-dev
Expand Down

0 comments on commit ef3e109

Please sign in to comment.