From 98a542707a965bcb6b6cb51b992ace90de222210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 24 Feb 2019 19:52:04 +0100 Subject: [PATCH] [CI] Make Py3 CI version-independent --- .gitlab-ci.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c787183..26d0cd7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,29 +29,14 @@ Python 2.7 Apple: reports: junit: test/pytest.xml -Python 3.6: +Python 3: script: - - py_version=3.6 + - py_version=3 - EXTRA_INSTALL="numpy mako" - 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.6 - - gfortran - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - -Python 3.7: - script: - - py_version=3.7 - - EXTRA_INSTALL="numpy mako" - - 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 + - python3 - gfortran except: - tags -- GitLab