ci: add test step for python 11 (#476)

This commit is contained in:
Robert Kaussow 2022-11-02 13:01:33 +01:00 committed by GitHub
parent b4a9a50b60
commit 547754929c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 1 deletions

View File

@ -76,6 +76,7 @@ local PipelineTest = {
PythonVersion(pyversion='3.8'),
PythonVersion(pyversion='3.9'),
PythonVersion(pyversion='3.10'),
PythonVersion(pyversion='3.11'),
{
name: 'codecov',
image: 'python:3.10',

View File

@ -90,6 +90,20 @@ steps:
depends_on:
- fetch
- name: python311-pytest
image: python:3.11
commands:
- pip install poetry poetry-dynamic-versioning -qq
- poetry config experimental.new-installer false
- poetry install -E ansible-core
- poetry run pytest
- poetry version
- poetry run ansible-later --help
environment:
PY_COLORS: 1
depends_on:
- fetch
- name: codecov
image: python:3.10
commands:
@ -630,6 +644,6 @@ depends_on:
---
kind: signature
hmac: eb4460fabeac6c01164e6c420758f1c0a6f313f0869ebea9e12014e0605c7dea
hmac: 1248c66961ccf34ce348b02e971d170a7dbcd7d93f278ba0f29b764fd39278fe
...