From 83e22769b563ccbca8e5bf2d9f0435d187e3de7a Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Mon, 2 Mar 2026 17:24:41 -0500 Subject: [PATCH] fix: remove forced HATE_CRACK_RUN_LIMA_TESTS=1 from pytest-lima hook The hook was forcing Lima VM tests on every push, causing 5-minute timeouts when limactl has to download the Ubuntu cloud image. The test already has a skip guard - remove the env var from the hook entry so it stays opt-in. --- prek.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prek.toml b/prek.toml index af40f9d..f529529 100644 --- a/prek.toml +++ b/prek.toml @@ -31,7 +31,7 @@ always_run = true [[repos.hooks]] id = "pytest-lima" name = "pytest-lima" -entry = "env HATE_CRACK_RUN_LIMA_TESTS=1 uv run pytest tests/test_lima_vm_install.py -v" +entry = "uv run pytest tests/test_lima_vm_install.py -v" language = "system" stages = ["pre-push"] pass_filenames = false