From fda1e989e0c22433b0214ab537a61852d906fd4b Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Tue, 5 May 2026 05:12:11 -0500 Subject: test: tag integration suite :slow and unstick test-all MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I tagged the 15 end-to-end tests across `test-integration-chime-mode.el`, `test-integration-recurring-events-tooltip.el`, and `test-integration-startup.el` with `:tags '(:slow)`. The default `make test` now runs only the 652 fast unit tests; `make test-all` runs the full 667. While verifying, I hit a pre-existing bug in `tests/Makefile` where `test-all`'s `--eval '(ert-run-tests-batch-and-exit)'` came back from eask's argv passthrough with its quotes stripped, which broke shell parsing. Passing the explicit `t` selector dodges whatever eask does to no-arg single-quoted forms. The bug only mattered once integration tests were `:slow` — before that, `test-all` overlapped fully with `test-unit` plus `test-integration`, so nothing actually depended on it working. --- tests/test-integration-recurring-events-tooltip.el | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/test-integration-recurring-events-tooltip.el') diff --git a/tests/test-integration-recurring-events-tooltip.el b/tests/test-integration-recurring-events-tooltip.el index b612755..810e3ee 100644 --- a/tests/test-integration-recurring-events-tooltip.el +++ b/tests/test-integration-recurring-events-tooltip.el @@ -148,6 +148,7 @@ Validates: - Recurring event expanded 365 times is deduplicated to one entry - Tooltip shows event title exactly once - The shown occurrence is the soonest one" + :tags '(:slow) (test-integration-recurring-setup) (unwind-protect (let* ((now (test-time-now)) @@ -207,6 +208,7 @@ Components integrated: Validates: - Weekly recurring events are deduplicated correctly - Tooltip shows only soonest occurrence" + :tags '(:slow) (test-integration-recurring-setup) (unwind-protect (let* ((now (test-time-now)) @@ -253,6 +255,7 @@ Validates: - Recurring event appears once - Non-recurring events all appear - Total count is correct (recurring deduplicated, others preserved)" + :tags '(:slow) (test-integration-recurring-setup) (unwind-protect (let* ((now (test-time-now)) @@ -320,6 +323,7 @@ Validates: - Each recurring event title appears exactly once - Different recurring frequencies handled correctly - Deduplication works independently for each title" + :tags '(:slow) (test-integration-recurring-setup) (unwind-protect (let* ((now (test-time-now)) -- cgit v1.2.3