Skip to content

Commit 4fdc09d

Browse files
authored
Third-party tests: don't run pydantic tests on pypy (#351)
they keep segfaulting and it's nothing to do with us
1 parent 3304a5f commit 4fdc09d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/third_party.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9", "pypy3.10"]
44+
# PyPy is deliberately omitted here,
45+
# since pydantic's tests intermittently segfault on PyPy,
46+
# and it's nothing to do with typing_extensions
47+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4548
runs-on: ubuntu-latest
4649
timeout-minutes: 60
4750
steps:

0 commit comments

Comments
 (0)