Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
fix(tests): use our own fork of postgresql container for testing
Browse files Browse the repository at this point in the history
We had been using paintedfox/postgresql directly from the Docker Hub,
the reasoning being that using a container other than deis/database
keeps the functional tests more honest. Instead, use a container
from a forked repo, so we can control changes to it.
  • Loading branch information
mboersma committed Sep 11, 2014
1 parent f0a8fd7 commit 1d20351
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/bin/prime-docker-images.sh
Expand Up @@ -15,4 +15,4 @@ docker pull deis/base:latest
docker pull deis/slugbuilder:latest
docker pull deis/slugrunner:latest
docker pull deis/test-etcd:latest
docker pull paintedfox/postgresql:latest
docker pull deis/test-postgresql:latest
2 changes: 1 addition & 1 deletion tests/mock/mock.go
Expand Up @@ -16,7 +16,7 @@ func RunMockDatabase(t *testing.T, uid string, etcdPort string, dbPort string) {
var err error
cli, stdout, stdoutPipe := dockercli.GetNewClient()
done := make(chan bool, 1)
dbImage := "paintedfox/postgresql:latest"
dbImage := "deis/test-postgresql:latest"
ipaddr := utils.GetHostIPAddress()
done <- true
go func() {
Expand Down

0 comments on commit 1d20351

Please sign in to comment.