From 45d1150a2920776fa502e86e4311fc32ddc5ca4f Mon Sep 17 00:00:00 2001 From: Jan Caron <j.caron@fz-juelich.de> Date: Wed, 19 Jul 2017 16:14:39 +0200 Subject: [PATCH] Rolled back environment.yml to use pip install -e .['tests'] Installing EVERYTHING with pip was not a smart idea... --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 36b01fe..124b46d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -27,7 +27,8 @@ test: # TODO: Different jobs with custom develop arguments? extra_requires (hyperspy, plotting)? # TODO: Use pip install -e .[hyperspy], etc. # Install requirements: - - pip install -r requirements.txt # TODO: Use conda docker image if available!? + # - pip install -r requirements.txt # TODO: DOES NOT WORK (because mayavi and stuff...) + - pip install -e .['tests'] - python setup.py test - coverage html artifacts: -- GitLab