From 3e73e249b2e71d0a40d8f7f9b5d9ac06342d3474 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 21 Dec 2021 23:31:08 +0100 Subject: [PATCH] a --- .woodpecker/test.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 27898a3..d2832fd 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -1,12 +1,20 @@ pipeline: install: - image: python:alpine + image: python:${TAG}-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 + image: python:${TAG}-alpine commands: - pytest + + +matrix: + TAG: + - 3.10 + - 3.9 + - 3.8 + - 3.7