From 400fff813defa17449f2fe8640bc38b9085fbfc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20Kl=C3=B6ckner?= Date: Sun, 3 Feb 2019 20:37:57 +0100 Subject: [PATCH] CI: Stop targeting specific Py3 versions --- .gitlab-ci.yml | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c1ad550..45aaa41 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -26,28 +26,14 @@ Python 2.7: reports: junit: test/pytest.xml -Python 3.6: +Python 3: script: - - export PY_EXE=python3.6 + - export PY_EXE=python3 - export EXTRA_INSTALL="numpy" - 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 - except: - - tags - artifacts: - reports: - junit: test/pytest.xml - -Python 3.7: - script: - - export PY_EXE=python3.7 - - export EXTRA_INSTALL="numpy" - - 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 except: - tags artifacts: -- GitLab