We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d409ec9 commit d34c389Copy full SHA for d34c389
.github/workflows/ci.yml
@@ -75,12 +75,13 @@ jobs:
75
python -m unittest test_typing_extensions.py
76
77
- name: Test CPython typing test suite
78
+ # Test suite fails on PyPy even without typing_extensions
79
+ if: ${{ !startsWith(matrix.python-version, 'pypy') }}
80
run: |
81
+ cd src
82
# Run the typing test suite from CPython with typing_extensions installed,
83
# because we monkeypatch typing under some circumstances.
84
python -c 'import typing_extensions; import test.__main__' test_typing -v
- # Test suite fails on PyPy even without typing_extensions
- if: !startsWith(matrix.python-version, 'pypy')
85
86
linting:
87
name: Lint
0 commit comments