From f2cb5ce7748525837bbed71b31a7f171423d170f Mon Sep 17 00:00:00 2001
From: Benjamin Bertrand <benjamin.bertrand@esss.se>
Date: Sun, 2 Sep 2018 22:17:58 +0200
Subject: [PATCH] Add junit report to gitlab-ci.yml

New feature added in GitLab 11.2.
See https://docs.gitlab.com/ee/ci/yaml/README.html#artifacts-reports-junit
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6d878a0..905c0aa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -54,6 +54,8 @@ test:
     paths:
       - junit.xml
       - coverage.xml
+    reports:
+      junit: junit.xml
     expire_in: 1 hour
 
 analyse:
-- 
GitLab