twnet_parser/.gitlab-ci.yml

25 lines
340 B
YAML
Raw Normal View History

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 15:43:53 +00:00
- pylint twnet_parser/
2023-03-16 13:04:48 +00:00
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 15:43:53 +00:00
- mypy twnet_parser/
2023-03-14 21:58:06 +00:00