2023-08-24 20:14:30 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
2023-12-23 22:26:57 +00:00
|
|
|
variables:
|
|
|
|
- &pytest_base
|
2024-10-27 20:08:30 +00:00
|
|
|
depends_on: []
|
2023-08-24 20:14:30 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
2023-08-24 21:51:54 +00:00
|
|
|
- poetry run pytest --cov-append
|
2023-08-24 20:14:30 +00:00
|
|
|
- poetry version
|
|
|
|
- poetry run ${CI_REPO_NAME} --help
|
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|
2023-12-23 22:26:57 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: python-312
|
|
|
|
image: docker.io/library/python:3.12
|
|
|
|
<<: *pytest_base
|
|
|
|
|
|
|
|
- name: python-311
|
|
|
|
image: docker.io/library/python:3.11
|
|
|
|
<<: *pytest_base
|
|
|
|
|
|
|
|
- name: python-310
|
|
|
|
image: docker.io/library/python:3.10
|
|
|
|
<<: *pytest_base
|
|
|
|
|
|
|
|
- name: python-39
|
|
|
|
image: docker.io/library/python:3.9
|
|
|
|
<<: *pytest_base
|
|
|
|
|
|
|
|
- name: python-38
|
|
|
|
image: docker.io/library/python:3.8
|
|
|
|
<<: *pytest_base
|