From 0e8c70851fe13f6464b6d544f014e064fc084c98 Mon Sep 17 00:00:00 2001 From: "Linus W." Date: Thu, 14 May 2026 07:56:54 +0200 Subject: [PATCH] Explicitly set terminal width to 120 in test to ensure that no truncation occurs at output writing --- tests/test_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_cli.py b/tests/test_cli.py index bee9b1a..af25e0a 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -23,6 +23,7 @@ runner = CliRunner() server_version = ACTUAL_SERVER_INTEGRATION_VERSIONS[-1] # use latest version +os.environ["COLUMNS"] = "120" def base_dataset(actual: Actual, budget_name: str = "Test", encryption_password: str | None = None):