We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
inline-snapshot
1 parent 9446588 commit db63fecCopy full SHA for db63fec
.github/workflows/ci.yml
@@ -105,9 +105,8 @@ jobs:
105
- run: uv run pytest
106
env:
107
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' || '' }}
+ # 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' || '' }}
111
# TODO: add `gil_used = false` to the PyO3 `#[pymodule]` when test suite is ok
112
PYTHON_GIL: ${{ endsWith(matrix.python-version, 't') && '0' || '1' }}
113
0 commit comments