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

---
 .gitlab-ci.yml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8a78559..310738f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,6 +7,7 @@ before_script:
 stages:
   - Static Analysis
   - Test
+  - Deploy
 
 pylint:
   stage: Static Analysis
@@ -17,4 +18,10 @@ pylint:
 pytest:
   stage: Test
   script:
-  - pytest 
+  - coverage run -m pytest
+  - coverage report
+
+dummy:
+  stage: Deploy
+  script:
+      - echo "Pipeline finished"
-- 
GitLab