Skip to content

Commit 260f183

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

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
@@ -27,23 +27,30 @@ jobs:
2727
python:
2828
- version: "3.7"
2929
toxenv: py37
30+
experimental: false
3031
- version: "3.8"
3132
toxenv: py38
33+
experimental: false
3234
- version: "3.9"
3335
toxenv: py39
36+
experimental: false
3437
- version: "3.10"
3538
toxenv: py310,smoke
39+
experimental: false
3640
- version: '3.11.0-alpha - 3.11' # SemVer's version range syntax
3741
toxenv: py311,smoke
42+
experimental: true
3843
include:
3944
- os: macos-latest
4045
python:
4146
version: "3.10"
4247
toxenv: py310,smoke
48+
experimental: false
4349
- os: windows-latest
4450
python:
4551
version: "3.10"
4652
toxenv: py310,smoke
53+
experimental: false
4754
steps:
4855
- uses: actions/checkout@v3
4956
- name: Set up Python ${{ matrix.python.version }}
@@ -53,6 +60,7 @@ jobs:
5360
- name: Install dependencies
5461
run: pip3 install tox pytest-github-actions-annotate-failures
5562
- name: Run tests
63+
continue-on-error: ${{ matrix.python.experimental }}
5664
env:
5765
TOXENV: ${{ matrix.python.toxenv }}
5866
run: tox --skip-missing-interpreters false

0 commit comments

Comments
 (0)