Skip to content

Commit

Permalink
Try to fix GH actions syntax (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
JelleZijlstra committed Mar 11, 2024
1 parent d409ec9 commit d34c389
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -75,12 +75,13 @@ jobs:
python -m unittest test_typing_extensions.py
- name: Test CPython typing test suite
# Test suite fails on PyPy even without typing_extensions
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
run: |
cd src
# Run the typing test suite from CPython with typing_extensions installed,
# because we monkeypatch typing under some circumstances.
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')
linting:
name: Lint
Expand Down

0 comments on commit d34c389

Please sign in to comment.