From ca5dad8c6b9983c8e417310deac03173f815fa86 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 25 May 2018 17:13:05 -0700 Subject: try to fix gitlab-ci --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d89e2b56..62575c4f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,11 @@ rust_test: image: "rust:1.26-stretch" variables: - TEST_DATABASE_URL: "postgres://postgres@localhost/fatcat_test" + POSTGRES_DB: "fatcat_test" + POSTGRES_USER: "fatcat_user" + POSTGRES_PASSWORD: "fatcat_pw" + DATABASE_URL: "postgres://fatcat_user:fatcat_pw:@localhost/fatcat_test" + TEST_DATABASE_URL: "postgres://fatcat_user:fatcat_pw:@localhost/fatcat_test" services: - "postgres:9.6" before_script: -- cgit v1.2.3