From f2f2c26f2602284dc64e0e368a78e2140ab581f3 Mon Sep 17 00:00:00 2001
From: Benedikt <benedikt.seeger@ptb.de>
Date: Tue, 25 Feb 2025 15:36:05 +0000
Subject: [PATCH] Edit .gitlab-ci.yml explicitly install pytest

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8102a2e..421b777 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,6 +15,7 @@ variables:
     - git checkout "$CI_COMMIT_REF_NAME"
   script:
     - pip install .[testing]
+    - pip install pytest pytest-cov  # Explicitly install testing deps
     - pytest --cov --cov-report term-missing --cov-report xml:coverage.xml --cov-report html:cov_html
     - ls -la ./
   coverage: '/(?i)total.*? (100(?:\.0+)?\%|[1-9]?\d(?:\.\d+)?\%)$/'
-- 
GitLab