From 1bcd1b4cf76e2ea20f34c80be787a9f19bce2b61 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 fc2e267a..1f714051 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