diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8483746611748903023b051b130743b3f57fbbfe..9120a92ed94e623c76f40f55badb519ce7505c04 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -47,7 +47,7 @@ before_script:
 black:
   image: milansuk/python-black:latest
   script:
-    - black --fast .
+    - black --check .
 
 #SOURCE: https://pypi.org/project/pylint-gitlab/
 pylint:
@@ -57,7 +57,7 @@ pylint:
     - python -V
     - mkdir -p public/badges public/lint
     - echo undefined > public/badges/$CI_JOB_NAME.score
-    - pip install pylint-gitlab
+    - pip install pylint-django
     - pip install -r requirements.txt
   script:
     - pylint  --exit-zero --output-format=text $(find -type f -name "*.py" ! -path "**/.venv/**") | tee /tmp/pylint.txt