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 1a01c14
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ 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
@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

Expand All @@ -34,6 +34,7 @@ integration-test: build

.PHONY: generate
generate:
@chmod g-w ./pkg/nodebootstrap/assets/*
@go generate ./pkg/nodebootstrap ./pkg/eks/mocks

.PHONY: eksctl-build-image
Expand Down

0 comments on commit 1a01c14

Please sign in to comment.