From 86e065b09a0fbfe908af08c9b28d5a3310df979f Mon Sep 17 00:00:00 2001 From: retoor Date: Thu, 14 May 2026 02:36:38 +0000 Subject: [PATCH] fix: remove concurrent execution flag from build configuration to prevent race conditions --- .gitea/workflows/test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index aec2541d..0370f1cc 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -24,7 +24,7 @@ jobs: - name: Run integration tests run: | - python -m pytest tests/ -n auto -v --tb=line -x + python -m pytest tests/ -v --tb=line -x - name: Upload test screenshots if: failure()