From d7ccc74bfde0734c07a65d9ac8b3fc95a6c8db23 Mon Sep 17 00:00:00 2001 From: David Hewitt Date: Thu, 6 Feb 2025 19:33:50 +0000 Subject: [PATCH] disable `inline-snapshot` on 3.13t --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2da8f98b3..ed52c387f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,9 +105,8 @@ jobs: - run: uv run pytest env: HYPOTHESIS_PROFILE: slow - # TODO: remove -x when test suite is more stable; we use it so that first error (hopefully) gets - # reported without the interpreter crashing - PYTEST_ADDOPTS: ${{ endsWith(matrix.python-version, 't') && '--parallel-threads=2 -x' || '' }} + # TODO: remove --inline-snapshot=disable after https://github.com/15r10nk/inline-snapshot/issues/192 + PYTEST_ADDOPTS: ${{ endsWith(matrix.python-version, 't') && '--parallel-threads=2 --inline-snapshot=disable' || '' }} # TODO: add `gil_used = false` to the PyO3 `#[pymodule]` when test suite is ok PYTHON_GIL: ${{ endsWith(matrix.python-version, 't') && '0' || '1' }}