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

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

View File

@ -77,6 +77,7 @@ local PipelineTest = {
PythonVersion(pyversion='3.8'),
PythonVersion(pyversion='3.9'),
PythonVersion(pyversion='3.10'),
PythonVersion(pyversion='3.11'),
],
depends_on: [
'lint',

View File

@ -101,6 +101,19 @@ 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 version
- poetry run git-batch --help
environment:
PY_COLORS: 1
depends_on:
- fetch
trigger:
ref:
- refs/heads/main
@ -545,6 +558,6 @@ depends_on:
---
kind: signature
hmac: 2943f9e1db01759432ebef984d5ec4488e0245f6fcd04906309a62950762afe6
hmac: d17bcb89eea572d2f6b4286f491979e310e8932878a5c73ea0cd7530cff7da6d
...