From e2a8f5833e29a8117d8317e928ce2bc8a6b28460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 23 Sep 2018 13:33:27 -0400 Subject: [PATCH] Add Pytest/JUnit/Gitlab integration --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dcb58f1..c5bc17c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,10 @@ Python 2.7: - python2.7 except: - tags + artifacts: + reports: + junit: test/pytest.xml + Python 3.5: script: @@ -19,6 +23,10 @@ Python 3.5: - python3.5 except: - tags + artifacts: + reports: + junit: test/pytest.xml + Python 3.7: script: @@ -30,6 +38,10 @@ Python 3.7: - python3.7 except: - tags + artifacts: + reports: + junit: test/pytest.xml + Documentation: script: -- GitLab