Skip to content

Commit 4923487

Browse files
author
Matthew Fisher
committed
fix(builder): revert to testing local package
`go test` doesn't like it if there's multiple main scripts in the same directory. Since there are no other packages to test, `.` tests everything. From a platform-wide perspective this does seem odd, but it's only because builder is not built with Go from the ground up, whereas the logger, logspout and publisher are pure Go.
1 parent 9d4421c commit 4923487

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ deploy: build dev-release restart
6666
test: test-unit test-functional
6767

6868
test-unit:
69-
godep go test -v ./...
69+
godep go test -v .
7070

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

0 commit comments

Comments
 (0)