Skip to content
Snippets Groups Projects

Update .gitlab-ci.yml

Merged Andri Fränkl requested to merge andri.fraenkl-main-patch-49495 into main
1 file
+ 3
3
Compare changes
  • Side-by-side
  • Inline
+ 3
3
@@ -17,7 +17,7 @@ build-job: # First stage deployment and installation of dependencies.
Coverage-test-job: # Test Stage
stage: test # Starts when the above build stages finishes installing dependencies.
script:
- coverage run --source tests/tests/ -m pytest
- coverage run --source tests -m pytest
- coverage report -m
- echo "Coverage successfully deployed."
@@ -25,6 +25,6 @@ Flake8/Pylint/mypy-test-job: # Test Stage
stage: test # Deploys and runs all 3 linters.
script:
- flake8 --docstring-convention google tests/tests/
- pylint tests/tests/
- mypy tests/tests/
- pylint tests/ tests/
- mypy tests/ tests/
- echo "Linters successfully deployed."
Loading