From 4245394f48d908ac12a94e424b696adacf71cd89 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 Oct 2025 10:13:04 +0200 Subject: [PATCH 1/2] ci: Test on PyPy 3.11 instead of 3.10 * https://pypy.org/download * https://pypy.org/blog --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4debd4891..3dc775ba0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - "3.11" - "3.12" - "3.13" - - "pypy-3.10" + - "pypy-3.11" steps: - name: Checkout uses: actions/checkout@v5 From c35d41bc341cbbb13e7357036a8a75cf4e48a6f2 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 14 Oct 2025 15:15:24 +0200 Subject: [PATCH 2/2] hatch run test:nowarn --ignore=tests/test_debugger.py Ignore test_debugger.py when running tests on pypy. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3dc775ba0..c3947ef31 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: timeout-minutes: 15 if: ${{ startsWith( matrix.python-version, 'pypy' ) }} run: | - hatch run test:nowarn + hatch run test:nowarn --ignore=tests/test_debugger.py - name: Run the tests on Windows timeout-minutes: 15