From 685bca312f6aaaad2702b3de4d285691295af552 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 1ee65dd9..701d30ac 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,7 +57,6 @@ type: - .changes stage: checks script: - - poetry install - make mypy lint: @@ -127,7 +126,7 @@ pages: stage: publish_doc script: - poetry install - - poetry run make docs + - make docs - mv docs/_build/html public - ls public artifacts: -- GitLab