15 lines
259 B
YAML
Raw Normal View History

2025-01-19 07:07:53 +01:00
---
steps:
test:
image: python
commands:
- python -m pip install '.[develop]'
- coverage run --source='.' src/manage.py test src && coverage html
- coverage html
- cat htmlcov/index.html
2025-01-19 07:12:09 +01:00
when:
event: [tag, push]
2025-01-19 07:07:53 +01:00