2022-01-18 17:08:24 +00:00
|
|
|
pipeline:
|
|
|
|
before_script:
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
|
|
|
- pip install poetry
|
|
|
|
- poetry config virtualenvs.create false
|
|
|
|
- poetry install
|
|
|
|
|
|
|
|
unit_tests:
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
2022-01-18 17:11:31 +00:00
|
|
|
- pytest
|
2022-01-18 17:08:24 +00:00
|
|
|
|
|
|
|
code_lint:
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
2022-01-18 17:11:31 +00:00
|
|
|
- black .
|
2022-01-18 17:08:24 +00:00
|
|
|
|
|
|
|
static_analysis:
|
|
|
|
image: python:3.9
|
|
|
|
commands:
|
2022-01-18 17:11:31 +00:00
|
|
|
- mypy .
|