diff options
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 968cfb3..23d78e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,14 +1,14 @@ before_script: - apt-get update - apt-get install -q -y python-pip libpq-dev python-dev libjpeg-dev zlib1g-dev libxml2-dev libxslt1-dev libgeos-dev - - pip install -r requirements.txt + - pip install -q -r requirements.txt - cp Makefile.example Makefile - echo "LOG_PATH = '/tmp/'" > chimere_example_project/local_settings.py variables: - POSTGRES_DB: morrigan - POSTGRES_USER: morrigan - POSTGRES_PASSWORD: "morrigan" + POSTGRES_DB: chimere + POSTGRES_USER: chimere + POSTGRES_PASSWORD: "chimere" services: - postgres:9.1 |