From aa3721c718f63cf0d78caad033076fefae463423 Mon Sep 17 00:00:00 2001
From: iamashwin99 <ashwin-kumar.karnad@mpsd.mpg.de>
Date: Thu, 15 Jun 2023 10:49:47 +0200
Subject: [PATCH] update CI

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ed7e959..05f003e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -81,7 +81,7 @@ style:
     - ruff .
     - black --check --diff .
     - pydocstyle mpsd-software.py
-    - pydocstyle tests.py
+    - pydocstyle test_mpsd-software.py
     # we could also use `ruff --select D` for pycodestyle. But the behaviour is not exactly the same.
     - ./mpsd-software.py --version
 
@@ -91,12 +91,12 @@ test-bullseye:
   image: debian:bullseye-slim
   script:
     - *prepare_debian
-    - pytest -v -l tests.py
+    - pytest -v -l test_mpsd-software.py
 
 test-bookworm:
   stage: test
   image: debian:bookworm-slim
   script:
     - *prepare_debian
-    - pytest -v -l tests.py
+    - pytest -v -l test_mpsd-software.py
 
-- 
GitLab