From 490cd9a0d86b6b7aa094e9bff778a408c9e55441 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Wed, 4 Mar 2026 08:20:01 +0200 Subject: tests: skip IO-heavy suites in short mode --- internal/timer/operations_test.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/timer') diff --git a/internal/timer/operations_test.go b/internal/timer/operations_test.go index 5c73db6..c0480d7 100644 --- a/internal/timer/operations_test.go +++ b/internal/timer/operations_test.go @@ -10,6 +10,9 @@ import ( // setup sets up a temporary state file for testing. func setup(t *testing.T) { t.Helper() + if testing.Short() { + t.Skip("skipping timer integration-style tests in short mode") + } tempDir := t.TempDir() t.Setenv("XDG_CONFIG_HOME", tempDir) t.Setenv("HOME", tempDir) -- cgit v1.2.3