We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e11b7 commit 5c57a45Copy full SHA for 5c57a45
tests/test_cli.py
@@ -63,6 +63,7 @@ def test_agent_flag(
63
create_test_module: Callable[..., None],
64
):
65
env.remove('OPENAI_API_KEY')
66
+ env.set('COLUMNS', '150')
67
68
test_agent = Agent(TestModel(custom_output_text='Hello from custom agent'))
69
create_test_module(custom_agent=test_agent)
@@ -98,6 +99,7 @@ def test_agent_flag_set_model(
98
99
100
101
env.set('OPENAI_API_KEY', 'xxx')
102
103
104
custom_agent = Agent(TestModel(custom_output_text='Hello from custom agent'))
105
create_test_module(custom_agent=custom_agent)
0 commit comments