pipeline: install: image: python:${TAG}-alpine commands: - apk add mariadb-dev - python -m pip install --upgrade pip - pip debug -v - pip install -v ".[tests]" test: image: python:${TAG}-alpine commands: - pytest matrix: TAG: - 3.10 - 3.9 - 3.8 - 3.7