flaschengeist/.woodpecker/test.yml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
277 B
YAML
Raw Normal View History

pipeline:
install:
image: python:${PYTHON}-slim
commands:
- 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