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