From d2a0a7a2ff8ac5d23fb78aec8e98273360b22ffc 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 | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d6cb3203..c7039b60 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:
@@ -124,7 +122,6 @@ pages:
     - tags
     - master
   script:
-    - poetry install
     - make docs
     - mv docs/_build/html public
     - ls public
-- 
GitLab