aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-11-06 19:37:17 +0100
committerGravatar Johannes Christ <[email protected]>2018-11-06 19:37:17 +0100
commit4cb59b8ff163b233f21e224bfdf742384eb05c17 (patch)
treea2a4d2751e57b746a12db1197f048085fa3f3f9f
parentExtract lint dependencies from `setup.py`. (diff)
Install all `psycopg2` dependencies.
-rw-r--r--.gitlab-ci.yml12
1 files changed, 10 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 075cc6a6..33c2eb44 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -58,7 +58,11 @@ test-3.7-alpine:
<<: *test-template
image: python:3.7-alpine
before_script:
- - apk add --no-cache-dir gcc postgresql-dev
+ - apk add --no-cache-dir \
+ gcc \
+ linux-headers \
+ musl-dev \
+ postgresql-dev
- python -m pip install -e .[test]
- python manage.py migrate
script:
@@ -73,7 +77,11 @@ test-3.6-alpine:
<<: *test-template
image: python:3.6-alpine
before_script:
- - apk add --no-cache-dir gcc postgresql-dev
+ - apk add --no-cache-dir \
+ gcc \
+ linux-headers \
+ musl-dev \
+ postgresql-dev
- python -m pip install -e .[test]
- python manage.py migrate