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,