generated from KKlochko/poetry-template
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
316 B
14 lines
316 B
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: installing deps and test
|
|
image: python:3.10-alpine
|
|
commands:
|
|
- export POETRY_HOME=/opt/poetry
|
|
- python3 -m venv $POETRY_HOME
|
|
- $POETRY_HOME/bin/pip install poetry==1.3.2
|
|
- $POETRY_HOME/bin/poetry install
|
|
- $POETRY_HOME/bin/poetry run pytest -s
|