flaschengeist/.woodpecker/test.yml

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

21 lines
339 B
YAML
Raw Normal View History

2021-12-21 21:58:04 +00:00
pipeline:
install:
2021-12-21 22:31:08 +00:00
image: python:${TAG}-alpine
2021-12-21 21:58:04 +00:00
commands:
- apk add mariadb-dev
- python -m pip install --upgrade pip
- pip install -vvvv "Pillow>=8.4.0"
- pip install ".[tests]"
test:
2021-12-21 22:31:08 +00:00
image: python:${TAG}-alpine
2021-12-21 21:58:04 +00:00
commands:
- pytest
2021-12-21 22:31:08 +00:00
matrix:
TAG:
- 3.10
- 3.9
- 3.8
- 3.7