We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent6b47c26 commit260f183Copy full SHA for 260f183
.github/workflows/test.yml
@@ -27,23 +27,30 @@ jobs:
27
python:
28
-version:"3.7"
29
toxenv:py37
30
+experimental:false
31
-version:"3.8"
32
toxenv:py38
33
34
-version:"3.9"
35
toxenv:py39
36
37
-version:"3.10"
38
toxenv:py310,smoke
39
40
-version:'3.11.0-alpha - 3.11'# SemVer's version range syntax
41
toxenv:py311,smoke
42
+experimental:true
43
include:
44
-os:macos-latest
45
46
version:"3.10"
47
48
49
-os:windows-latest
50
51
52
53
54
steps:
55
-uses:actions/checkout@v3
56
-name:Set up Python ${{ matrix.python.version }}
@@ -53,6 +60,7 @@ jobs:
60
-name:Install dependencies
61
run:pip3 install tox pytest-github-actions-annotate-failures
62
-name:Run tests
63
+continue-on-error:${{ matrix.python.experimental }}
64
env:
57
65
TOXENV:${{ matrix.python.toxenv }}
58
66
run:tox --skip-missing-interpreters false