Skip to content

Commit cfa6462

Browse files
committed
Treat dependences as locked
Signed-off-by: Ed Snible <snible@us.ibm.com>
1 parent 086498d commit cfa6462

20 files changed

Lines changed: 20 additions & 20 deletions

File tree

a2a/a2a_contact_extractor/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync . --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked . --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/a2a_currency_converter/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync app --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked app --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/cheerup_agent/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync server --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked server --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/file_organizer/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync server --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked server --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/generic_agent/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync server --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked server --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/git_issue_agent/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
set child_pid [spawn env HOST=localhost PORT=8001 uv run --no-sync server]
8+
set child_pid [spawn env HOST=localhost PORT=8001 uv run --locked server]
99

1010
expect {
1111
"Uvicorn running on" {

a2a/image_service/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync server --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked server --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/recipe_agent/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync server --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked server --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/reservation_service/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync python -c "from src.reservation_service.agent import run; run()" --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked python -c "from src.reservation_service.agent import run; run()" --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

a2a/simple_generalist/test_startup.exp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
set timeout 10
66

77
# This is similar the Dockerfile CMD
8-
spawn env HOST=localhost PORT=8001 uv run --no-sync python -c "from src.simple_generalist.main import run; run()" --host localhost --port 8001
8+
spawn env HOST=localhost PORT=8001 uv run --locked python -c "from src.simple_generalist.main import run; run()" --host localhost --port 8001
99

1010
expect {
1111
"Uvicorn running on" { puts "Success"; exit 0 }

0 commit comments

Comments
 (0)