From 4a67b294c0a16d06c769ada420db3ab594671031 Mon Sep 17 00:00:00 2001
From: Carel van Niekerk <carel.niekerk@hhu.de>
Date: Wed, 15 Apr 2020 14:42:21 +0200
Subject: [PATCH] Update .gitlab-ci.yml

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 31ea5e5..aae518e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@ image: python:3.7-alpine
 test:
   stage: test
   script:
-  - pip install -U sphinx alabaster
+  - pip install -U -r requirements.txt
   - cp -r Docs/* .
   - sphinx-build -b html . public
   only:
@@ -14,7 +14,7 @@ test:
 pages:
   stage: deploy
   script:
-  - pip install -U sphinx alabaster
+  - pip install -U -r requirements.txt
   - cp -r Docs/* .
   - sphinx-build -b html . public
   - cp Docs/hhu-logo.png public/_static/hhu-logo.png
-- 
GitLab