8000 chore: allow Python 3.11 tests to fail · python-gitlab/python-gitlab@b472c39 · GitHub
[go: up one dir, main page]

Skip to content

Commit b472c39

Browse files
chore: allow Python 3.11 tests to fail
This is due to #2015
1 parent 6b47c26 commit b472c39

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,37 @@ env:
2121
jobs:
2222
unit:
2323
runs-on: ${{ matrix.os }}
24+
continue-on-error: ${{ matrix.python.experimental }}
2425
strategy:
2526
matrix:
2627
os: [ubuntu-latest]
2728
python:
2829
- version: "3.7"
2930
toxenv: py37
31+
experimental: false
3032
- version: "3.8"
3133
toxenv: py38
34+
experimental: false
3235
- version: "3.9"
3336
toxenv: py39
37+
experimental: false
3438
- version: "3.10"
3539
toxenv: py310,smoke
40+
experimental: false
3641
- version: '3.11.0-alpha - 3.11' # SemVer's version range syntax
3742
toxenv: py311,smoke
43+
experimental: true
3844
include:
3945
- os: macos-latest
4046
python:
4147
version: "3.10"
4248
toxenv: py310,smoke
49+
experimental: false
4350
- os: windows-latest
4451
python:
4552
version: "3.10"
4653
toxenv: py310,smoke
54+
experimental: false
4755
steps:
4856
- uses: actions/checkout@v3
4957
- name: Set up Python ${{ matrix.python.version }}

0 commit comments

Comments
 (0)
0