File tree 3 files changed +3
-6
lines changed 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ git_commit := $(shell git describe --dirty --always)
4
4
version_pkg := github.com/weaveworks/eksctl/pkg/version
5
5
6
6
# The dependencies version should be bumped every time the build dependencies are updated
7
- EKSCTL_DEPENDENCIES_IMAGE ?= weaveworks/eksctl-build:deps-0.3
7
+ EKSCTL_DEPENDENCIES_IMAGE ?= weaveworks/eksctl-build:deps-0.4
8
8
EKSCTL_BUILDER_IMAGE ?= weaveworks/eksctl-builder:latest
9
9
EKSCTL_IMAGE ?= weaveworks/eksctl:latest
10
10
@@ -54,16 +54,15 @@ test: ## Run unit test (and re-generate code under test)
54
54
$(MAKE ) lint
55
55
$(MAKE ) generate-aws-mocks-test generate-bindata-assets-test generate-kubernetes-types-test
56
56
$(MAKE ) unit-test
57
- test -z $(COVERALLS_TOKEN ) || time " $( GOBIN) /goveralls" -coverprofile=coverage.out -service=circle-ci
58
57
$(MAKE ) build-integration-test
59
58
60
59
.PHONY : unit-test
61
60
unit-test : # # Run unit test only
62
- CGO_ENABLED=0 time go test -covermode=count -coverprofile=coverage.out ./pkg/... ./cmd/... $(UNIT_TEST_ARGS )
61
+ CGO_ENABLED=0 time go test ./pkg/... ./cmd/... $(UNIT_TEST_ARGS )
63
62
64
63
.PHONY : unit-test-race
65
64
unit-test-race : # # Run unit test with race detection
66
- CGO_ENABLED=1 time go test -race -covermode=atomic -coverprofile=coverage.out ./pkg/... ./cmd/... $(UNIT_TEST_ARGS )
65
+ CGO_ENABLED=1 time go test -race ./pkg/... ./cmd/... $(UNIT_TEST_ARGS )
67
66
68
67
.PHONY : build-integration-test
69
68
build-integration-test : # # Build integration test binary
Original file line number Diff line number Diff line change 16
16
go install github.com/jteeuwen/go-bindata/go-bindata
17
17
go install github.com/weaveworks/github-release
18
18
go install golang.org/x/tools/cmd/stringer
19
- go install github.com/mattn/goveralls
20
19
go install github.com/vektra/mockery/cmd/mockery
21
20
22
21
Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ import (
17
17
_ "github.com/goreleaser/goreleaser"
18
18
_ "github.com/jteeuwen/go-bindata/go-bindata"
19
19
_ "github.com/kubernetes-sigs/aws-iam-authenticator/cmd/aws-iam-authenticator"
20
- _ "github.com/mattn/goveralls"
21
20
_ "github.com/vektra/mockery/cmd/mockery"
22
21
_ "github.com/weaveworks/github-release"
23
22
_ "golang.org/x/tools/cmd/stringer"
You can’t perform that action at this time.
0 commit comments