From 59091e4b313646ceeea8e1651fdcec00b668f5c6 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 d26c8df6..ddfa9ddc 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