From 80b6ae210f0a3e0dc847904ef36b2e11f46a92d3 Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Wed, 7 Aug 2019 20:16:31 +0200 Subject: [PATCH] Install pip on .gitlab-ci.yml --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e67fb81..e73ad9a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,7 @@ minimal-windows: - env - conda env list - python -c "import numpy" + - conda install pip - pip install -e . - python3 setup.py test @@ -34,6 +35,7 @@ minimal-conda: - $ENABLE_NIGHTLY_BUILDS image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda script: + - conda install pip - pip install -e . - python3 setup.py test tags: @@ -60,6 +62,7 @@ build-documentation: stage: test image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full script: + - conda install pip - pip install -e . - export PYTHONPATH=`pwd` - mkdir html_doc -- GitLab