From 3cee321746e8a72d3e33835f3b8da22d589738ef 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, and sphinx are now directly installed in v3.8 container - This in order to speed-up the jobs pylint: install all dependencies to avoid the deps import issues: E0401 and E1101 --- .gitlab-ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee0d22ad..c64ba1f4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,7 +57,6 @@ type: - .changes stage: checks script: - - poetry install - make mypy lint: @@ -128,7 +127,7 @@ pages: stage: publish_doc script: - poetry install - - poetry run make docs + - make docs - mv docs/_build/html public - ls public artifacts: -- GitLab