Skip to content

Commit c086e0a

Browse files
author
Etienne Tremel
committed
Run tests against ./cmd/ only
1 parent 2945d7b commit c086e0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ dist:
2626
test-all: vet lint test
2727

2828
test:
29-
go test -v -parallel=4 ./...
29+
go test -v -parallel=4 ./cmd/...
3030

3131
lint:
3232
@go get github.com/golang/lint/golint
33-
go list ./... | grep -v vendor | xargs -n1 golint
33+
go list ./cmd/... | grep -v vendor | xargs -n1 golint
3434

3535
vet:
36-
go vet ./...
36+
go vet ./cmd/...
3737

3838
dep:
3939
ifndef HAS_DEP

0 commit comments

Comments
 (0)