flaschengeist/.woodpecker/test.yml

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

21 lines
321 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
2021-12-21 22:34:02 +00:00
- pip debug -v
- pip install -v ".[tests]"
2021-12-21 21:58:04 +00:00
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