From 1318b3bef5902f611c2ddd5d2c2e94d42cedebd6 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Fri, 14 Feb 2020 18:05:50 +0200
Subject: [PATCH] [ci] #118: Stop installing all dependencies into jobs for one
 dev dep:

- mypy, pylint, and sphinx are now directly installed in v3.8 container
- This in order to speed-up the jobs
---
 .gitlab-ci.yml | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 45de7904..96c39833 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,6 @@ type:
     - .changes
   stage: checks
   script:
-    - poetry install
     - make mypy
 
 lint:
@@ -65,7 +64,6 @@ lint:
     - .changes
   stage: checks
   script:
-    - poetry install
     - make pylint
 
 .tests:
@@ -127,7 +125,7 @@ pages:
   stage: publish_doc
   script:
     - poetry install
-    - poetry run make docs
+    - make docs
     - mv docs/_build/html public
     - ls public
   artifacts:
-- 
GitLab