From b83d251c86ff11051e145394c5631d81b333f2c8 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 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .woodpecker/test.yml diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..b8cb48e --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,10 @@ +pipeline: + install: + image: python:alpine + commands: + - apk add mariadb-dev + - pip install ".[tests]" + test: + image: python:alpine + commands: + - pytest