diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8b1e2ddc6df47b0bfdee16af9a5782b37c58fdb1..4b1cc07e5112ebb34552dd834e98182e31f5834c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,17 +8,10 @@ before_script:
 stages:
   - lint
 
-flake8:
+linting:
   tags:
     - lint
   stage: lint
   script:
     - flake8 --exclude=tests.py --max-line-length=120 *.py app
-
-pylint:
-  tags:
-    - lint
-  stage: lint
-  script:
     - pylint --ignore=tests.py --max-line-length=120 *.py app
-