flaschengeist/.woodpecker/test.yml

20 lines
318 B
YAML

pipeline:
install:
image: python:${PYTHON}-alpine
commands:
- apk add mariadb-dev jpeg-dev
- python -m pip install --upgrade pip
- pip install -v ".[tests]"
test:
image: python:${PYTHON}-alpine
commands:
- pytest
matrix:
PYTHON:
- 3.10
- 3.9
- 3.8
- 3.7