xoxys.general/.woodpecker/unit-test.yml
Robert Kaussow 23d135f3df
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/unit-test Pipeline failed
ci/woodpecker/pr/sanity-test Pipeline was successful
ci/woodpecker/pr/build-package unknown status
ci/woodpecker/pr/docs unknown status
fix image ref and add groups
2023-12-13 09:43:19 +01:00

38 lines
683 B
YAML

---
when:
- event: [pull_request, tag]
- event: [push, manual]
branch:
- ${CI_REPO_DEFAULT_BRANCH}
variables:
- &pytest_base
group: pytest
commands:
- git fetch --depth=2147483647
- pip install poetry -qq
- poetry install --all-extras --no-root
- poetry run pytest
environment:
PY_COLORS: "1"
steps:
pyton-312:
image: docker.io/library/python:3.12
<<: *pytest_base
pyton-311:
image: docker.io/library/python:3.11
<<: *pytest_base
pyton-310:
image: docker.io/library/python:3.10
<<: *pytest_base
pyton-39:
image: docker.io/library/python:3.9
<<: *pytest_base
depends_on:
- lint