Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
pipeline:
install:
image: python:${PYTHON}-slim
commands:
- apt install libmariadbclient-dev -y
- python -m pip install --upgrade pip
- pip install -v ".[tests]"
test:
- pytest
matrix:
PYTHON:
- 3.10
- 3.9
- 3.8
- 3.7