From 3c93644260d14f63cefa128f1652fbd289c0dcc1 Mon Sep 17 00:00:00 2001
From: Christoph Stahl <christoph.stahl@tu-dortmund.de>
Date: Sun, 4 Dec 2022 20:54:54 +0100
Subject: [PATCH] project must be installed for sphinx (?)

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3a55498..7d634d1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,20 +4,19 @@ mypy:
     stage: test
     script:
         - pip install mypy --quiet
-        - pip install . --quiet
         - mypy syng --strict
 
 pylint:
     stage: test
     script:
         - pip install pylint --quiet
-        - pip install . --quiet
         - pylint syng
 
 test:
     stage: test
     script:
         - pip install -U sphinx
+        - pip install . --quiet
         - sphinx-build -b html docs/source docs/build
     only:
         - branches
@@ -30,6 +29,7 @@ pages:
     stage: deploy
     script:
         - pip install -U sphinx
+        - pip install . --quiet
         - sphinx-build -b html docs/source docs/build
     artifacts:
         paths:
-- 
GitLab