diff options
-rw-r--r-- | .gitlab-ci.yml | 4 | ||||
-rw-r--r-- | dev-requirements.txt | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c2c8eb4..a6e7ec8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,7 @@ stages: - build docker-build-master: - needs: [ "test", "coverage" ] + needs: [ "test" ] image: docker:latest stage: build services: @@ -18,7 +18,7 @@ docker-build-master: - master docker-build: - needs: [ "test", "coverage" ] + needs: [ "test" ] image: docker:latest stage: build services: diff --git a/dev-requirements.txt b/dev-requirements.txt index 0e5b1cb..b0075d6 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -3,4 +3,5 @@ pytest==6.2.4 pytest-mock==3.6.1 pytest-xdist==2.3.0 coverage==5.5 -pytest-pythonpath==0.7.3
\ No newline at end of file +pytest-pythonpath==0.7.3 +pytest-cov==2.12.1
\ No newline at end of file |