From 520185e1f0d2ed79108d1a02ae55283eaff3ef19 Mon Sep 17 00:00:00 2001 From: Denis Arrivault <denis.arrivault@lif.univ-mrs.fr> Date: Wed, 26 Apr 2017 18:12:52 +0200 Subject: [PATCH] Up correct python and pip call --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e0fea78..cc8cfe8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -29,7 +29,7 @@ build: tags: - docker script: - - python setup.py install + - python3 setup.py install # Tests test: @@ -37,7 +37,7 @@ test: tags: - docker script: - - python setup.py test + - python3 setup.py test artifacts: when: always untracked: true @@ -51,7 +51,7 @@ dist: tags: - docker script: - - pip install -e . + - pip3 install -e . - nosetests artifacts: when: always -- GitLab