diff --git a/backend/secfit/.gitlab-ci.yml b/backend/secfit/.gitlab-ci.yml
deleted file mode 100644
index 8036d9cf4d6e3e4696f9c92ef07905c8da490745..0000000000000000000000000000000000000000
--- a/backend/secfit/.gitlab-ci.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-image: python:stable
-
-stages:
-    - test
-    - production
-
-before_script:
-    - apt-get update -qy
-    - apt-get install -y ruby-dev
-    - gem install dpl
-        
-test-job1:
-  stage: test
-  script:
-    - echo "This job tests something"
-
-production:
-    type: deploy
-    stage: production
-    image: ruby:latest
-    script:
-        - dpl --provider=heroku --app=$HEROKU_APP --api-key=$HEROKU_API_KEY
-    only:
-        - master