From 8f7febfa6f5900e64bee1636c2bbc13bd5a52bd6 Mon Sep 17 00:00:00 2001 From: Arthur Teixeira Date: Mon, 22 Jun 2026 11:06:09 -0300 Subject: [PATCH] Step Runner: set color environment variables before executing test step --- lib/compiler/Maker/Step/Run.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/compiler/Maker/Step/Run.zig b/lib/compiler/Maker/Step/Run.zig index 5e9372ccfb45372ee71a5c6f065ff314db5c3c9a..9ca0b0071ef85554d51f6e2ee328f7bd93d29760 100644 --- a/lib/compiler/Maker/Step/Run.zig +++ b/lib/compiler/Maker/Step/Run.zig @@ -2306,6 +2306,7 @@ fn spawnChildAndCollect( }; if (conf_run.flags.stdio == .zig_test) { + try setColorEnvironmentVariables(&conf_run, environ_map, graph.stderr_mode.?); const started: Io.Clock.Timestamp = .now(io, .awake); const result = evalZigTest(run, run_index, maker, progress_node, spawn_options, fuzz_context) catch |err| switch (err) { error.Canceled => |e| return e, -- 2.54.0