fix(ci): disable faulthandler to prevent pytest hang

pytest completes all tests but process never exits in GitLab CI.
Disabling the faulthandler plugin fixes this.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Deeman
2026-02-24 04:19:24 +01:00
parent a27bf77e99
commit 8c03b16e61

View File

@@ -9,7 +9,7 @@ test:
- pip install uv
script:
- uv sync
- uv run pytest web/tests/ -x -q
- uv run pytest web/tests/ -x -q -p no:faulthandler
- uv run ruff check web/src/ web/tests/
rules:
- if: $CI_COMMIT_BRANCH == "master"