flaschengeist/.woodpecker/test.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
329 B
YAML
Raw Normal View History

pipeline:
install:
image: python:${PYTHON}-alpine
commands:
2021-12-21 23:01:21 +00:00
- apk add build-base 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