Skip to content

Commit f1b6fce

Browse files
committed
Fix CI: set COLUMNS env var for consistent Rich output
1 parent 3db9451 commit f1b6fce

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
@pytest.fixture
3030
def runner() -> CliRunner:
31-
"""Create a CLI test runner."""
32-
return CliRunner()
31+
"""Create a CLI test runner with consistent terminal width."""
32+
return CliRunner(env={"COLUMNS": "200"})
3333

3434

3535
@pytest.fixture

0 commit comments

Comments
 (0)