From 7acd3fbaa172d9472374c96076b4649a833edab2 Mon Sep 17 00:00:00 2001 From: Stephan Seitz <stephan.seitz@fau.de> Date: Wed, 7 Aug 2019 19:26:13 +0200 Subject: [PATCH] Add `pip instal -e .` to gitlab-ci --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a127a6a..0cdb6cf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,6 +12,8 @@ minimal-windows: - env - conda env list - python -c "import numpy" + - pip install -e . + - pip install pytest - pytest minimal-ubuntu: @@ -32,6 +34,8 @@ minimal-conda: - $ENABLE_NIGHTLY_BUILDS image: i10git.cs.fau.de:5005/pycodegen/pycodegen/minimal_conda script: + - pip install -e . + - pip install pytest - pytest tags: - docker @@ -57,6 +61,7 @@ build-documentation: stage: test image: i10git.cs.fau.de:5005/pycodegen/pycodegen/full script: + - pip install -e . - export PYTHONPATH=`pwd` - mkdir html_doc - sphinx-build -W -b html doc html_doc -- GitLab