diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..a446bc2 --- /dev/null +++ b/.woodpecker/test.yml @@ -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