From 5c35caf81f85c255ab5d84e9a634902e7aae61e3 Mon Sep 17 00:00:00 2001
From: Anton Hansson <antha652@student.liu.se>
Date: Fri, 30 Sep 2022 21:33:16 +0000
Subject: [PATCH] Update .gitlab-ci.yml file

---
 .gitlab-ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index bec695c..9392560 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,10 +8,11 @@ stages:
   - Static Analysis
   - Test
 
-flake8:
+pylint:
   stage: Static Analysis
+  allow_failure: true
   script:
-  - flake8 --max-line-length=120 bild/*.py
+  - pylint -d C0301 bild/*.py
 
 pytest:
   stage: Test
-- 
GitLab