From abf1787792b544f77153eb4a067a91fc87b3fd67 Mon Sep 17 00:00:00 2001
From: Olivier Bertrand <olivier.bertrand@uni-bielefeld.de>
Date: Sun, 1 Apr 2018 13:33:27 +0200
Subject: [PATCH] Update .gitlab-ci.yml

tox command was not found, we try with pip3 --user install
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3761811..85eab42 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -22,7 +22,7 @@ build:
 test:
   script:
   #- python3 setup.py test
-  #- pip3 -U install tox flake8  # you can also use tox
+  - pip3 --user install tox flake8  # you can also use tox
   - tox -e py36,flake8
   - python -m unittest discover navipy
 
-- 
GitLab