Skip to content

Commit

Permalink
Third-party tests: don't run pydantic tests on pypy (#351)
Browse files Browse the repository at this point in the history
they keep segfaulting and it's nothing to do with us
  • Loading branch information
AlexWaygood committed Mar 7, 2024
1 parent 3304a5f commit 4fdc09d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/third_party.yml
Expand Up @@ -41,7 +41,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
# PyPy is deliberately omitted here,
# since pydantic's tests intermittently segfault on PyPy,
# and it's nothing to do with typing_extensions
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
Expand Down

0 comments on commit 4fdc09d

Please sign in to comment.