From 8dfa0a5dc31b298252d001304b9107be76e4de4c Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Tue, 18 Jul 2023 16:14:51 +0100 Subject: [PATCH] Skip running `cattrs` tests on PyPy (#272) Works around #271 --- .github/workflows/third_party.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/third_party.yml b/.github/workflows/third_party.yml index d07f82e3..7910bca4 100644 --- a/.github/workflows/third_party.yml +++ b/.github/workflows/third_party.yml @@ -312,7 +312,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.9"] + # TODO: Add pypy3.9 back to this matrix + # After PyYAML/PyPy issues are fixed (see #271) + python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ubuntu-latest timeout-minutes: 60 steps: