From ab596f0a3d5b0fb7cd745dcaca406730a9c58ded Mon Sep 17 00:00:00 2001 From: Dimitri Yatsenko Date: Fri, 30 Jan 2026 11:04:47 -0600 Subject: [PATCH] fix: Remove unit tests from pre-commit hooks Pre-commit hooks should be fast. Running tests on every commit: - Slows down the development workflow - Fails legitimately when creating reproducers before fixes Tests are better suited for CI workflows where they run in parallel and don't block local commits. Fixes #1356 Co-Authored-By: Claude Opus 4.5 --- .pre-commit-config.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 218134d62..2178d73bc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -47,12 +47,3 @@ repos: - types-tqdm - pandas-stubs - numpy -- repo: local - hooks: - - id: unit-tests - name: unit tests - entry: pytest tests/unit/ -v --tb=short - language: system - pass_filenames: false - always_run: true - stages: [pre-commit]