python/{{ cookiecutter.project_slug }}/.woodpecker.yml

15 lines
290 B
YAML
Raw Normal View History

2023-05-19 17:16:55 +02:00
pipeline:
2023-05-19 19:35:18 +02:00
test:
image: python:${PYTHON_VERSION}
pull: true
environment:
- POETRY_VIRTUALENVS_IN_PROJECT=true
2023-05-19 17:16:55 +02:00
commands:
2023-05-19 19:35:18 +02:00
- pip install poetry
- poetry install
- poetry run pytest
matrix:
PYTHON_VERSION:
- {{ cookiecutter. python_min_version}}