From f855b0ef516ac52aaab8e19d1e13252b2ace81c6 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Mon, 26 Jul 2021 00:00:41 +0300
Subject: [PATCH] Something is not right here.

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b7df55e..1a676ac 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
-- 
GitLab