From 128c07113a6ec90f4908f021a1b58d52423f2c12 Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Tue, 10 Dec 2019 14:51:38 +0100 Subject: [PATCH] [CI] Do not require hashes when testing; install dev dependencies --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 18b428fe1..5f9b694a3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,7 +19,7 @@ test: before_script: - adduser --disabled-password --gecos "Test User" testuser script: - - sudo -u testuser sh -c 'poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin' + - sudo -u testuser sh -c 'poetry export --without-hashes --dev -f requirements.txt | eatmydata pip install -r /dev/stdin' - sudo -u testuser eatmydata poetry run tox build_dist: @@ -106,7 +106,7 @@ pages: image: name: registry.edugit.org/teckids/docker-images/python-pimped script: - - poetry export -f requirements.txt | eatmydata pip install -r /dev/stdin + - poetry export --without-hashes --dev -f requirements.txt | eatmydata pip install -r /dev/stdin - poetry run make -C docs html BUILDDIR=../public/docs artifacts: paths: -- GitLab