pipeline: install: 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:${TAG}-alpine commands: - pytest matrix: TAG: - 3.10 - 3.9 - 3.8 - 3.7