From 70e540bdacf7f1598f567b428c4f181fdb621d48 Mon Sep 17 00:00:00 2001
From: Your Name <stephan.seitz@fau.de>
Date: Tue, 3 Sep 2019 10:39:54 +0200
Subject: [PATCH] CI: use full-image

---
 .gitlab-ci.yml | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8134aab..b284c3a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,7 +23,7 @@ ubuntu:
   except:
     variables:
       - $ENABLE_NIGHTLY_BUILDS
-  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_ubuntu
+  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full
   script:
     - python3 -m pip install -e .
     - python3 setup.py test
@@ -33,6 +33,7 @@ ubuntu:
   artifacts:
     paths:
       - test-report
+      - htmlcov
 
 conda:
   stage: test
@@ -49,7 +50,24 @@ conda:
   artifacts:
     paths:
       - test-report
+      - htmlcov
 
+full:
+  stage: test
+  except:
+    variables:
+      - $ENABLE_NIGHTLY_BUILDS
+  image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda
+  script:
+    - conda install pip
+    - pip install -e .
+    - python setup.py test
+  tags:
+    - docker
+  artifacts:
+    paths:
+      - test-report
+      - htmlcov
 
 # -------------------- Linter & Documentation --------------------------------------------------------------------------
 
-- 
GitLab