From 6ebf5d8bf10a0daf02d05bab2fff989e388f0976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 23 Sep 2018 13:27:08 -0400 Subject: [PATCH] Add Pytest/JUnit/Gitlab integration --- .gitlab-ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc27c97..9a7a57e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,6 +9,9 @@ Python 2.7: - maxima except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 2.7 Conda: script: @@ -19,6 +22,9 @@ Python 2.7 Conda: - linux except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.5: script: @@ -31,6 +37,9 @@ Python 3.5: - maxima except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.5 Conda: script: @@ -41,6 +50,9 @@ Python 3.5 Conda: - linux except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.5 Apple: script: @@ -51,6 +63,9 @@ Python 3.5 Apple: - apple except: - tags + artifacts: + reports: + junit: test/pytest.xml Documentation: script: -- GitLab