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

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

View File

@ -78,6 +78,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

@ -105,6 +105,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
- poetry run pytest dockertidy --cov=dockertidy --cov-append --no-cov-on-fail
- poetry version
- poetry run docker-tidy --help
environment:
PY_COLORS: 1
depends_on:
- fetch
- name: codecov
image: python:3.10
commands:
@ -647,6 +661,6 @@ depends_on:
---
kind: signature
hmac: fdc815dd75d3fa8ef72dac9840ba54ae3f1f071c7cf1b004bed565648d3a85ff
hmac: d757b839a090092d430dfeba0e2a5a2fcab4deb2aab992006d8f475cf24b2815
...