8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21be122 commit d44e9cfCopy full SHA for d44e9cf
.github/workflows/ci.yml
@@ -48,6 +48,7 @@ jobs:
48
- "3.12.0"
49
- "3.13"
50
- "3.13.0"
51
+ - "3.14-dev"
52
- "pypy3.9"
53
- "pypy3.10"
54
@@ -69,6 +70,7 @@ jobs:
69
70
cd src
71
python --version # just to make sure we're running the right one
72
python -m unittest test_typing_extensions.py
73
+ continue-on-error: ${{ endsWith(matrix.python-version, '-dev') }}
74
75
- name: Test CPython typing test suite
76
# Test suite fails on PyPy even without typing_extensions
@@ -78,6 +80,7 @@ jobs:
78
80
# Run the typing test suite from CPython with typing_extensions installed,
79
81
# because we monkeypatch typing under some circumstances.
82
python -c 'import typing_extensions; import test.__main__' test_typing -v
83
84
85
linting:
86
name: Lint
0 commit comments