From c7305c3678ac334e98b2f08f858cc2cda2161b28 Mon Sep 17 00:00:00 2001
From: Dominik George <dominik.george@teckids.org>
Date: Tue, 10 Dec 2019 23:27:33 +0100
Subject: [PATCH] [CI] Install dependencies in docker test container as well

---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b40a30f60..3f63eb517 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -76,6 +76,8 @@ test_docker_selenium:
   before_script:
     - apt-get -y update && eatmydata apt-get -y install chromium-driver
     - eatmydata pip install selenium pytest-selenium
+    - poetry export --without-hashes --dev -f requirements.txt | pip install -r /dev/stdin
+    - eatmydata pip install dist/*.whl
     - adduser --disabled-password --gecos "Test User" testuser
   script:
     - sudo -u testuser eatmydata tox -e selenium
-- 
GitLab