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

Could not import networkx, which somehow strange.
So we do an explicite install
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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