Skip to content

Commit b72790e

Browse files
committed
feat(*): build test-etcd, test-postgresql, and mock-store locally
Previously we were relying on someone manually building and pushing these to Docker Hub. We should build these with our BUILD_TAG like we do all components, so that Jenkins can pick up local changes in a branch.
1 parent e187255 commit b72790e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ test-unit: setup-venv test-style
7979
venv/bin/coverage report -m
8080

8181
test-functional:
82-
@docker history deis/test-etcd >/dev/null 2>&1 || docker pull deis/test-etcd:latest
83-
@docker history deis/test-postgresql >/dev/null 2>&1 || docker pull deis/test-postgresql:latest
82+
@$(MAKE) -C ../tests/ test-etcd
83+
@$(MAKE) -C ../tests/ test-postgresql
8484
GOPATH=`cd ../tests/ && godep path`:$(GOPATH) go test -v ./tests/...

0 commit comments

Comments
 (0)