31 lines
457 B
YAML
31 lines
457 B
YAML
image: python:3.11
|
|
|
|
stages:
|
|
- test
|
|
- build
|
|
|
|
test:
|
|
stage: test
|
|
tags:
|
|
- python
|
|
- test
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- coverage run -m pytest
|
|
- coverage report
|
|
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
|
|
|
|
wheel:
|
|
stage: build
|
|
tags:
|
|
- master
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- python setup.py bdist_wheel
|
|
artifacts:
|
|
paths:
|
|
- dist/
|
|
expire_in: 1 week
|