Skip to content

Commit

Permalink
Fix paths in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bertinatto committed Oct 9, 2018
1 parent 52f67ff commit d49bd67
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 @@ -8,15 +8,15 @@ aws-ebs-csi-driver:

.PHONY: test
test:
go test -v -race github.com/kubernetes-sigs/aws-ebs-csi-driver/pkg/...
go test -v -race ./pkg/...

.PHONY: test-sanity
test-sanity:
go test -v github.com/kubernetes-sigs/aws-ebs-csi-driver/tests/sanity/...
go test -v ./tests/sanity/...

.PHONY: test-e2e
test-e2e:
go test -v github.com/kubernetes-sigs/aws-ebs-csi-driver/tests/e2e/...
go test -v ./tests/e2e/...

.PHONY: image
image: aws-ebs-csi-driver
Expand Down

0 comments on commit d49bd67

Please sign in to comment.