From fac239111a79f4d55c755a3d0b6f7e05daa64436 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Fri, 30 Oct 2020 19:59:39 +0100 Subject: [PATCH] Install libxml and libxslt in Gitlab CI --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7b3a6b4..df9975d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ py38: stage: test image: python:3.8-alpine before_script: - - apk add --no-cache libmagic + - apk add --no-cache libmagic libxml2-dev libxslt-dev - pip install tox --no-cache-dir script: tox -e py38 @@ -14,7 +14,7 @@ py39: stage: test image: python:3.9-alpine before_script: - - apk add --no-cache libmagic + - apk add --no-cache libmagic libxml2-dev libxslt-dev - pip install tox --no-cache-dir script: tox -e py39