From 633fee6465070a0d293f38a68d80e6fdcdb3d1b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 23 Sep 2018 13:54:42 -0400 Subject: [PATCH] Add Pytest/JUnit/Gitlab integration, Py37 CI --- .gitlab-ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3c1d3c7..d93e178 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,9 @@ Python 2.7: - python2.7 except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.5: script: @@ -17,6 +20,9 @@ Python 3.5: - python3.5 except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.5 small integer opt: script: @@ -28,6 +34,9 @@ Python 3.5 small integer opt: - python3.5 except: - tags + artifacts: + reports: + junit: test/pytest.xml Python 3.6 + Barvinok: script: @@ -41,6 +50,22 @@ Python 3.6 + Barvinok: - python3.6 except: - tags + artifacts: + reports: + junit: test/pytest.xml + +Python 3.7: + script: + - export PY_EXE=python3.7 + - curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project.sh + - ". ./build-and-test-py-project.sh" + tags: + - python3.7 + except: + - tags + artifacts: + reports: + junit: test/pytest.xml PyPy: script: @@ -51,6 +76,9 @@ PyPy: - pypy except: - tags + artifacts: + reports: + junit: test/pytest.xml Documentation: script: -- GitLab