Skip to content

Commit

Permalink
Merge pull request #7003 from justinsb/easier_go_test
Browse files Browse the repository at this point in the history
Simplify `go test` command
  • Loading branch information
k8s-ci-robot authored Jun 20, 2019
2 parents 00edef8 + a5b230f commit 55f5cb6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ BAZELIMAGES=$(BAZELDIST)/images
BAZELUPLOAD=$(BAZELBUILD)/upload
UID:=$(shell id -u)
GID:=$(shell id -g)
TESTABLE_PACKAGES:=$(shell egrep -v "k8s.io/kops/vendor" hack/.packages)
BAZEL_OPTIONS?=
API_OPTIONS?=
GCFLAGS?=
Expand Down Expand Up @@ -239,7 +238,7 @@ hooks: # Install Git hooks

.PHONY: test
test: ${BINDATA_TARGETS} # Run tests locally
go test -v ${TESTABLE_PACKAGES}
go test -v ./...

.PHONY: ${DIST}/linux/amd64/nodeup
${DIST}/linux/amd64/nodeup: ${BINDATA_TARGETS}
Expand Down

0 comments on commit 55f5cb6

Please sign in to comment.