From 8c03b16e61b756b8c22a2625185569d40a9c129d Mon Sep 17 00:00:00 2001 From: Deeman Date: Tue, 24 Feb 2026 04:19:24 +0100 Subject: [PATCH] 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 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 995cb9a..3f5ed59 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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"