From 39b55cc703955e8e81dbd048c9eb8f440620aacf Mon Sep 17 00:00:00 2001
From: Denis Arrivault <denis.arrivault@lif.univ-mrs.fr>
Date: Wed, 26 Apr 2017 14:46:29 +0200
Subject: [PATCH] Up rm pip target

---
 .gitlab-ci.yml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 94f55e2..4e6ac4b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -12,20 +12,20 @@ cache:
   paths:
 # apt
     - apt-cache
-# 
 # build
     - build
   
 before_script:
   - export APT_CACHE_DIR=`pwd`/apt-cache && mkdir -pv $APT_CACHE_DIR
   - export SITE_PACKAGES=`pwd`/site_packages && mkdir -pv $SITE_PACKAGES
-  - export PYTHONPATH=$PYTHONPATH:$SITE_PACKAGES
-  - export PATH=$PATH:$SITE_PACKAGES
+  - rm -rf $SITE_PACKAGES
+#  - export PYTHONPATH=$PYTHONPATH:$SITE_PACKAGES
+#  - export PATH=$PATH:$SITE_PACKAGES
   - apt-get update -yq && apt-get -o dir::cache::archives="$APT_CACHE_DIR" install -y cmake libfftw3-dev
   - apt-get -o dir::cache::archives="$APT_CACHE_DIR" install -y liblapack-dev python3.5 python3.5-dev python3-pip
   - pip3 install --upgrade pip
-  - pip3 install --target=$SITE_PACKAGES scipy matplotlib
-  - pip3 install nose coverage
+#  - pip3 install --target=$SITE_PACKAGES scipy matplotlib
+  - pip3 install scipy matplotlib nose coverage
 
 # Main build 
 build: 
-- 
GitLab