2023-08-24 20:56:04 +00:00
|
|
|
---
|
|
|
|
when:
|
|
|
|
- event: [pull_request, tag]
|
|
|
|
- event: [push, manual]
|
|
|
|
branch:
|
|
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
|
2023-12-23 22:25:22 +00:00
|
|
|
variables:
|
|
|
|
- &pytest_base
|
|
|
|
group: pytest
|
2023-08-24 20:56:04 +00:00
|
|
|
commands:
|
|
|
|
- pip install poetry poetry-dynamic-versioning -qq
|
|
|
|
- poetry install
|
2023-08-24 21:53:26 +00:00
|
|
|
- poetry run pytest --cov-append
|
2023-08-24 20:56:04 +00:00
|
|
|
- poetry version
|
|
|
|
- poetry run ${CI_REPO_NAME} --help
|
|
|
|
environment:
|
|
|
|
PY_COLORS: "1"
|
2023-12-23 22:25:22 +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
|