From a51a5c4c51f96ca8f78c15668fccbd07b4820b71 Mon Sep 17 00:00:00 2001 From: Benjamin McCormick Date: Thu, 5 Feb 2026 17:10:09 -0500 Subject: [PATCH] fix: pytest -> pytest -x --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 51428930..4ba8ab43 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -65,7 +65,7 @@ repos: # Run main application tests - id: pytest-main name: pytest (main app) - entry: uv run pytest tests/ --ignore=tests/alembic/ + entry: uv run pytest -x tests/ --ignore=tests/alembic/ language: system files: ^(src/|tests/).*\.py$ stages: [pre-push]