From fa0e4cd2f90165687139ca407d33710fc6a0779a Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 24 Sep 2020 11:49:35 +0200 Subject: [PATCH] :poop: Add psql as CI dependency (remove it in the future) --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa481e9..ee1ddbc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,7 @@ py38-django31: stage: test image: python:3-alpine before_script: + - apk add postgresql-dev # Add texlive - pip install tox --no-cache-dir script: tox -e py38-django31 @@ -13,6 +14,7 @@ linters: stage: quality-assurance image: python:3-alpine before_script: + - apk add postgresql-dev # Add texlive - pip install tox --no-cache-dir script: tox -e linters