diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8a7855988b6fe7214c0d6463768e6debb38a2947..310738fff1b62c5627999fd866cf660c47f609ff 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"