From 3078eb30462e6611c9d813f27deb069640c9037b Mon Sep 17 00:00:00 2001 From: Michael Kuron <m.kuron@gmx.de> Date: Mon, 20 Jan 2020 13:46:08 +0100 Subject: [PATCH] CI: Replace minimal-ubuntu job with ubuntu --- .gitlab-ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c49077bb2..2173bd10e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -65,14 +65,16 @@ minimal-windows: - python -c "import numpy" - python setup.py quicktest -minimal-ubuntu: +ubuntu: stage: test except: variables: - $ENABLE_NIGHTLY_BUILDS - image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_ubuntu + image: i10git.cs.fau.de:5005/pycodegen/pycodegen/ubuntu script: - - python3 setup.py quicktest + - mkdir -p ~/.config/matplotlib + - echo "backend:template" > ~/.config/matplotlib/matplotlibrc + - pytest-3 -v -m "not longrun" tags: - docker -- GitLab