test_flake_poetry2nix/.woodpecker.yml

16 lines
268 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:
- 3.10
- 3.11