Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}

Expand Down
Loading