diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 85bc83b5e4b7b7617be6380796ae211b67f54814..98e7cb8da79e4219f553e0490e8509fd03a5ae07 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,18 +2,18 @@ image: python:3
 test:
   script:
   # this configures Django application to use attached postgres database that is run on `postgres` host
-  - cd backend/secfit
-  - apt-get update -qy
-  - pip install -r requirements.txt
-  - python manage.py test
+    - - apt-get update -qy
+    - cd backend/secfit
+    - pip install -r requirements.txt
+    - python manage.py test
 
 staging:
   type: deploy
   image: ruby
   script:
-  - apt-get update -qy
-  - apt-get install -y ruby-dev
-  - gem install dpl
-  - dpl --provider=heroku --app=tdt4237 --api-key=$HEROKU_STAGING_API_KEY
+    - apt-get update -qy
+    - apt-get install -y ruby-dev
+    - gem install dpl
+    - dpl --provider=heroku --app=tdt4237 --api-key=$HEROKU_STAGING_API_KEY
   only:
-  - master
+    - master
diff --git a/backend/secfit/requirements.txt b/backend/secfit/requirements.txt
index 9feb375bde1e8fb7befe6c102dd29beeee7c6940..125990db39916ccb574eab5e31cb357acbfe6515 100644
Binary files a/backend/secfit/requirements.txt and b/backend/secfit/requirements.txt differ