Skip to content

Commit 8773f28

Browse files
ref(*): Manage test dependencies using godeps
Simplify test running and dependency management. Follow deis coding standards > Use of third-party go packages should be minimal, but when doing so, vendor code into the Deis package with the godep tool.
1 parent 528b5c0 commit 8773f28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ test-unit: setup-venv test-style
7272
test-functional:
7373
@docker history deis/test-etcd >/dev/null 2>&1 || docker pull deis/test-etcd:latest
7474
@docker history deis/test-postgresql >/dev/null 2>&1 || docker pull deis/test-postgresql:latest
75-
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
75+
GOPATH=`cd ../tests/ && godep path`:$(GOPATH) go test -v ./tests/...

0 commit comments

Comments
 (0)