aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 75f00d4d..a7621236 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,6 +57,7 @@ test-3.7-alpine:
<<: *test-template
image: python:3.7-alpine
before_script:
+ - apk add --no-cache-dir postgresql-dev
- python -m pip install -e .[test]
- python manage.py migrate
script:
@@ -70,6 +71,10 @@ test-3.7-alpine:
test-3.6-alpine:
<<: *test-template
image: python:3.6-alpine
+ before_script:
+ - apk add --no-cache-dir postgresql-dev
+ - python -m pip install -e .[test]
+ - python manage.py migrate
test-3.7-stretch:
<<: *test-template