Robert Kaussow
fa92fd43ee
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/unit-test Pipeline was successful
ci/woodpecker/push/build-package unknown status
ci/woodpecker/push/docs unknown status
ci/woodpecker/push/sanity-test Pipeline failed
ci/woodpecker/push/notify Pipeline was successful
Reviewed-on: #7 Co-authored-by: Robert Kaussow <mail@thegeeklab.de> Co-committed-by: Robert Kaussow <mail@thegeeklab.de>
37 lines
646 B
YAML
37 lines
646 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
variables:
|
|
- &pytest_base
|
|
group: pytest
|
|
commands:
|
|
- 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
|