From ec091f514d3babd946745ba9dfd82bcc3db1c942 Mon Sep 17 00:00:00 2001 From: Brent Edwards Date: Tue, 12 May 2026 19:44:15 +0000 Subject: [PATCH] test(noxfile.py): turn off bold and colors ISSUES CLOSED: #11134 --- noxfile.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/noxfile.py b/noxfile.py index 12c0333f7..72a6d0372 100644 --- a/noxfile.py +++ b/noxfile.py @@ -179,6 +179,9 @@ def unit_tests(session: nox.Session): template_path = _create_template_db(session) session.env["CLEVERAGENTS_TEMPLATE_DB"] = template_path + # Remove ANSI escape codes. + session.env["TERM"] = "dumb" + behave_cmd = session.bin + "/behave-parallel" parallel_args = _behave_parallel_args(session.posargs) -- 2.52.0