python/{{ cookiecutter.project_slug }}/.woodpecker.yml
2023-05-19 19:35:45 +02:00

15 lines
290 B
YAML

pipeline:
test:
image: python:${PYTHON_VERSION}
pull: true
environment:
- POETRY_VIRTUALENVS_IN_PROJECT=true
commands:
- pip install poetry
- poetry install
- poetry run pytest
matrix:
PYTHON_VERSION:
- {{ cookiecutter. python_min_version}}