Skip to content

Commit 822c248

Browse files
committed
Allow -dev versions to fail
1 parent cf1b556 commit 822c248

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ jobs:
7272
# accidentally pick up typing_extensions as installed by a dependency
7373
cd src
7474
python -m unittest test_typing_extensions.py
75+
continue-on-error: ${{ endsWith(matrix.python-version, '-dev') }}
7576

7677
- name: Test CPython typing test suite
7778
# Test suite fails on PyPy even without typing_extensions
@@ -81,6 +82,7 @@ jobs:
8182
# Run the typing test suite from CPython with typing_extensions installed,
8283
# because we monkeypatch typing under some circumstances.
8384
python -c 'import typing_extensions; import test.__main__' test_typing -v
85+
continue-on-error: ${{ endsWith(matrix.python-version, '-dev') }}
8486

8587
linting:
8688
name: Lint

0 commit comments

Comments
 (0)