feat(ci): Added pipeline for tests
continuous-integration/woodpecker the build failed Details

Add all supported, meaning by flaschengeist, python versions.
This commit is contained in:
Ferdinand Thiessen 2021-12-21 22:58:04 +01:00
parent aaec6b43ae
commit 9020e2d3c8
1 changed files with 19 additions and 0 deletions

19
.woodpecker/test.yml Normal file
View File

@ -0,0 +1,19 @@
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