From 814c4eb5a2c2dfb0f3345a689afcc42a2231717b Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Fri, 14 Feb 2020 19:37:15 +0100 Subject: [PATCH] [ci] #118: only install dev dependencies - Try to override the pylint import issues by creating the virtualenv inside the project's root directory --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 800034cb..ef0b9332 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -53,6 +53,8 @@ lint: - .code_changes stage: checks script: + - poetry config virtualenvs.in-project true + - poetry install --no-dev - make pylint .tests: -- GitLab