File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -855,6 +855,9 @@ def cli_api_server(
855
855
web = False ,
856
856
trace_to_cloud = trace_to_cloud ,
857
857
a2a = a2a ,
858
+ host = host ,
859
+ port = port ,
860
+ protocol = protocol ,
858
861
reload_agents = reload_agents ,
859
862
),
860
863
host = host ,
Original file line number Diff line number Diff line change @@ -433,7 +433,9 @@ def test_app(
433
433
memory_service_uri = "" ,
434
434
allow_origins = ["*" ],
435
435
a2a = False , # Disable A2A for most tests
436
- base_url = "http://127.0.0.1:8000" ,
436
+ host = "127.0.0.1" ,
437
+ port = 8000 ,
438
+ protocol = "http" ,
437
439
)
438
440
439
441
# Create a TestClient that doesn't start a real server
@@ -610,7 +612,9 @@ def test_app_with_a2a(
610
612
memory_service_uri = "" ,
611
613
allow_origins = ["*" ],
612
614
a2a = True ,
613
- base_url = "http://127.0.0.1:8000" ,
615
+ host = "127.0.0.1" ,
616
+ port = 8000 ,
617
+ protocol = "http" ,
614
618
)
615
619
616
620
client = TestClient (app )
You can’t perform that action at this time.
0 commit comments