Skip to content

Commit db63fec

Browse files
authored
disable inline-snapshot on 3.13t test run (#1627)
1 parent 9446588 commit db63fec

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,8 @@ jobs:
105105
- run: uv run pytest
106106
env:
107107
HYPOTHESIS_PROFILE: slow
108-
# TODO: remove -x when test suite is more stable; we use it so that first error (hopefully) gets
109-
# reported without the interpreter crashing
110-
PYTEST_ADDOPTS: ${{ endsWith(matrix.python-version, 't') && '--parallel-threads=2 -x' || '' }}
108+
# TODO: remove --inline-snapshot=disable after https://github.com/15r10nk/inline-snapshot/issues/192
109+
PYTEST_ADDOPTS: ${{ endsWith(matrix.python-version, 't') && '--parallel-threads=2 --inline-snapshot=disable' || '' }}
111110
# TODO: add `gil_used = false` to the PyO3 `#[pymodule]` when test suite is ok
112111
PYTHON_GIL: ${{ endsWith(matrix.python-version, 't') && '0' || '1' }}
113112

0 commit comments

Comments
 (0)