jail2ban/.gitlab-ci.yml
2022-03-10 11:22:04 +01:00

14 lines
244 B
YAML

run tests:
stage: test
image: python:3.8
script:
- pip install pytest pytest-cov
- coverage run -m pytest
- coverage report
- coverage xml
artifacts:
reports:
cobertura: coverage.xml
tags:
- docker