Skip to content

Commit 916beed

Browse files
author
Joshua Anderson
committed
tests(builder, deisctl, publisher): standardize unit tests across components
1 parent 1536bfc commit 916beed

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ deploy: build dev-release restart
6262
test: test-style test-unit test-functional
6363

6464
test-unit:
65-
godep go test -v .
65+
$(GOTEST) .
6666

6767
test-functional:
6868
@docker history deis/test-etcd >/dev/null 2>&1 || docker pull deis/test-etcd:latest

deisctl/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,4 @@ test-style:
5151
$(GOLINT) ./...
5252

5353
test-unit:
54-
godep go test -v -cover ./...
54+
$(GOTEST) ./...

publisher/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ test-style:
6666
$(GOLINT) ./...
6767

6868
test-unit:
69-
godep go test -v ./...
69+
$(GOTEST) ./...
7070

7171
uninstall: check-deisctl
7272
deisctl uninstall publisher

0 commit comments

Comments
 (0)