|
pipeline:
|
|
install:
|
|
image: python:${PYTHON}-slim
|
|
commands:
|
|
- apt update
|
|
- apt install libmariadb-dev gcc -y
|
|
- python -m pip install --upgrade pip
|
|
- pip install -v ".[tests]"
|
|
test:
|
|
image: python:${PYTHON}-slim
|
|
commands:
|
|
- pytest
|
|
|
|
|
|
matrix:
|
|
PYTHON:
|
|
- 3.10
|
|
- 3.9
|
|
- 3.8
|
|
- 3.7
|