From 2bc160b5ca3da929082db6718bfd045cefbc6f7a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20tom=20W=C3=B6rden?= <h.tomwoerden@indiscale.com>
Date: Tue, 14 Jan 2025 16:51:24 +0100
Subject: [PATCH] FIX: install

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bc0f3db..08cea83 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -71,11 +71,10 @@ unittest_py3.9:
   script: &python_test_script
     # install dependencies
     - *env
-    - pip install pytest pytest-cov
-    - pip install .
     - python3 -c "import sys; assert sys.version.startswith('$PYVER')"
+    - pip install pytest pytest-cov
     # actual test
-    - cd loanpy && pytest --cov=loanpy -vv ./unittests
+    - cd loanpy && pip install . && pytest --cov=loanpy -vv ./unittests
 
 unittest_py3.10:
   variables:
-- 
GitLab