2023-03-14 21:58:06 +00:00
|
|
|
image: python:3.10.9
|
|
|
|
|
2023-03-16 13:04:48 +00:00
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- lint
|
|
|
|
|
|
|
|
pytest:
|
|
|
|
stage: test
|
|
|
|
script:
|
2023-03-16 13:49:55 +00:00
|
|
|
- pip install -r requirements/dev.txt
|
2023-03-16 13:04:48 +00:00
|
|
|
- pytest .
|
|
|
|
|
|
|
|
pylint:
|
|
|
|
stage: lint
|
|
|
|
script:
|
2023-03-16 13:49:55 +00:00
|
|
|
- pip install -r requirements/dev.txt
|
2023-03-16 13:04:48 +00:00
|
|
|
- pylint src/
|
|
|
|
|
|
|
|
types:
|
|
|
|
stage: lint
|
2023-03-14 21:58:06 +00:00
|
|
|
script:
|
2023-03-16 13:49:55 +00:00
|
|
|
- pip install -r requirements/dev.txt
|
2023-03-16 13:04:48 +00:00
|
|
|
- mypy src/
|
2023-03-14 21:58:06 +00:00
|
|
|
|