Skip to content

Commit c05ebdc

Browse files
committed
use docker inspect instead of ps
1 parent d7955ce commit c05ebdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/features/steps/health.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def llama_stack_connection_broken(context: Context) -> None:
1414

1515
try:
1616
result = subprocess.run(
17-
["docker", "ps", "--filter", "name=llama-stack", "--format", "{{.Status}}"],
17+
["docker", "inspect", "-f", "{{.State.Running}}", "llama-stack"],
1818
capture_output=True,
1919
text=True,
2020
check=True,

0 commit comments

Comments
 (0)