From 94560060e3b29279e7a25a84ef631878e905c96c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= <inform@tiker.net>
Date: Wed, 22 Aug 2018 17:36:04 -0400
Subject: [PATCH] Add Pytest/JUnit/Gitlab integration

---
 .gitlab-ci.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2025842..ff22aa3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,6 +8,9 @@ Python 2.7:
   - python2.7
   except:
   - tags
+  artifacts:
+    reports:
+      junit: test/pytest.xml
 
 Python 3.5:
   script:
@@ -19,6 +22,9 @@ Python 3.5:
   - python3.5
   except:
   - tags
+  artifacts:
+    reports:
+      junit: test/pytest.xml
 
 Python 2.6:
   script:
@@ -30,6 +36,9 @@ Python 2.6:
   - python2.6
   except:
   - tags
+  artifacts:
+    reports:
+      junit: test/pytest.xml
 
 Flake8:
   script:
-- 
GitLab