9 lines
212 B
YAML
9 lines
212 B
YAML
tests:
|
|
stage: test
|
|
coverage: '/TOTAL\s+\d+\s+\d+\s+(\d+%)/'
|
|
image: python:3.11
|
|
before_script:
|
|
- pip install -r requirements/ci.txt
|
|
script:
|
|
- coverage run --module unittest
|
|
- coverage report
|