From 5dcff81d3fa4592be0fb1e03bb112d4ca69f1e13 Mon Sep 17 00:00:00 2001
From: Michael Kuron <m.kuron@gmx.de>
Date: Mon, 20 Jan 2020 13:51:44 +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 fc22f2e7..51fb07ec 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -66,15 +66,17 @@ 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:
+    - mkdir -p ~/.config/matplotlib
+    - echo "backend:template" > ~/.config/matplotlib/matplotlibrc
     - pip3 install git+https://gitlab-ci-token:${CI_JOB_TOKEN}@i10git.cs.fau.de/pycodegen/pystencils.git@master#egg=pystencils
-    - python3 setup.py quicktest
+    - pytest-3 -v -m "not longrun"
   tags:
     - docker
 
-- 
GitLab