From 7e2bb9f8268085b9fef0b841ef874340f6d33af0 Mon Sep 17 00:00:00 2001 From: vladislav doster Date: Sat, 25 Jul 2026 11:09:52 -0500 Subject: [PATCH] ci: disable `verbose` output and `parallel` execution in zunit Updated zunit configuration to disable verbose output and parallel execution. --- .zunit.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.zunit.yml b/.zunit.yml index d4965697..58d62e74 100644 --- a/.zunit.yml +++ b/.zunit.yml @@ -4,4 +4,11 @@ directories: support: tests/_support tests: tests fail_fast: false -verbose: true +# Both parallel keys stay false, and the flags stay on the command line. +# zunit's config booleans are one-way -- there is no --no-parallel or +# --no-verbose -- so a `true' here could never be turned off again, not even +# for `zunit run tests/commands.zunit@"help"'. parallel_slice additionally +# implies parallel, and only does anything for a run that queues one file. +parallel: false +parallel_slice: false +verbose: false