From 4c30b2716b37a3dff3066c62d4685d765c0c7476 Mon Sep 17 00:00:00 2001
From: Daniel Kosc <da741kos@htwg-konstanz.de>
Date: Sun, 6 Jun 2021 17:14:24 +0200
Subject: [PATCH] test

---
 .gitlab-ci.yml | 14 ++++----------
 1 file changed, 4 insertions(+), 10 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2f70a82..6f640e6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,18 +21,14 @@ test:
   script:
     - pip install pytest-cov
     - coverage run -m pytest
-    - coverage xml
+    - coverage report
+    - pytest --junitxml=report.xml
     - mkdir dist
-    - cp coverage.xml dist
-    - pwd
-    - ls -la
-    - cd ..
-    - ls -la
-
+    - cp report.xml dist
   artifacts:
     when: always
     reports:
-      cobertura: dist/
+      junit: dist/
 
 
 
@@ -50,8 +46,6 @@ build:
   stage: build
   script:
     - python3 setup.py bdist_wheel
-    - pwd
-    - ls -la
   only:
     - branches
     - tags
-- 
GitLab