From eaa52088d3831d3a684c0a30aa7db724997ff299 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Thu, 7 Mar 2024 14:22:04 +0000 Subject: [PATCH] Third-party tests: don't run pydantic tests on pypy they keep segfaulting and it's nothing to do with us --- .github/workflows/third_party.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/third_party.yml b/.github/workflows/third_party.yml index cee1fe21..a0feeefc 100644 --- a/.github/workflows/third_party.yml +++ b/.github/workflows/third_party.yml @@ -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: