From 125f37b51d73517c2ede506e2db244c0c937bbb2 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com>
Date: Sun, 26 Jan 2020 14:54:53 +0100
Subject: [PATCH] CI: Fixed bug in the gitlab CI configuration.

---
 .gitlab-ci.yml | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c60cf15..1019919 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -6,20 +6,22 @@ cache:
 
 test:
   script:
-  - cd /app
-  - pip install -I -r requirements.txt
-  - cd /app/docs
+  - pwd
+  - pip install -U -r requirements.txt
+  - cd docs
   - make html
   except:
     - master
 
 pages:
   script:
-  - cd /app
-  - pip install -I -r requirements.txt
-  - cd /app/docs
+  - pwd
+  - ls
+  - pip install -U -r requirements.txt
+  - cd docs
   - make html
-  - mv /app/docs/_build/html /app/public
+  - cd ..
+  - mv docs/_build/html public
   artifacts:
     paths:
     - public
-- 
GitLab