From 7b79ba1c53d216c25f445a2c19dd5ae0a4451876 Mon Sep 17 00:00:00 2001
From: Frederik Hennig <frederik.hennig@fau.de>
Date: Fri, 10 Jan 2025 13:06:46 +0100
Subject: [PATCH] fuse testsuite and coverage nox sessions

---
 .gitlab-ci.yml | 1 -
 noxfile.py     | 6 ------
 2 files changed, 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6e908e7..d351ef6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -36,7 +36,6 @@ testsuite:
     - docker
   script:
     - nox --session testsuite
-    - nox --session report_coverage
   coverage: '/TOTAL.*\s+(\d+%)$/'
   artifacts:
     when: always
diff --git a/noxfile.py b/noxfile.py
index 2efdf04..de9047b 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -61,12 +61,6 @@ def testsuite(session: nox.Session):
         "--cov-report=term",
         "--cov-config=pyproject.toml",
     )
-
-
-@nox.session(python="3.10", tags=["report"])
-def report_coverage(session: nox.Session):
-    """Produce HTML and XML coverage reports"""
-    session.install("coverage[toml]")
     session.run("coverage", "html")
     session.run("coverage", "xml")
 
-- 
GitLab