From a749e421886a41435b72e48d8006546298c8c5ee Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 21 Dec 2021 22:58:04 +0100 Subject: [PATCH] feat(ci): Added pipeline for tests --- .woodpecker/test.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .woodpecker/test.yml diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..27898a3 --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,12 @@ +pipeline: + install: + image: python:alpine + commands: + - apk add mariadb-dev + - python -m pip install --upgrade pip + - pip install -vvvv "Pillow>=8.4.0" + - pip install ".[tests]" + test: + image: python:alpine + commands: + - pytest