diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b7df55e3b6fb5c4ed5af878f9977ebab133ba454..1a676acf01a2c85f9761471a31003a9c7ec27734 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -42,10 +42,10 @@ pytest:
   before_script:
     - poetry install
   script:
-    - poetry run pytest --junit-xml report.xml
+    - poetry run pytest --junit-xml report/pytest.xml
   artifacts:
     reports:
-      junit: report.xml
+      junit: report/pytest.xml
   # We don't any artifacts and don't want to wait for the download to finish.
   needs: []
 
@@ -60,7 +60,7 @@ bats:
     - bats --output report/ --formatter junit tests/
   artifacts:
     reports:
-      junit: report/*.xml
+      junit: report/TestReport-test_mnpw.bats.xml
   needs:
     - job: build-executable
       artifacts: true