15 lines
259 B
YAML
15 lines
259 B
YAML
---
|
|
|
|
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
|
|
when:
|
|
event: [tag, push]
|
|
|
|
|