From eccef5d9d9d3db4b1627b6e9c58a3978c95e3e7e Mon Sep 17 00:00:00 2001 From: Neda Moeini <neda.moeini@ga0479-nmoeini.home> Date: Tue, 22 Aug 2023 11:28:30 +0200 Subject: [PATCH] Fixed pipeline problem. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a8e29b951..356f21c11 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,10 +19,10 @@ run-tox-pipeline: # Change pip's cache directory to be inside the project directory since we can # only cache local items. variables: - POSTGRES_DB: gso_test_db + POSTGRES_DB: postgres POSTGRES_USER: nwa POSTGRES_PASSWORD: nwa - $DATABASE_URI_TEST: 'postgresql://nwa:nwa@postgres:5432/gso_test_db' + $DATABASE_URI_TEST: 'postgresql://nwa:nwa@postgres:5432/postgres' PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip" # Pip's cache doesn't store the python packages -- GitLab