diff --git a/scripts/integration-tests.sh b/scripts/integration-tests.sh index 66e6d8e57..a59b49652 100755 --- a/scripts/integration-tests.sh +++ b/scripts/integration-tests.sh @@ -111,6 +111,9 @@ echo "Inference Mode: $INFERENCE_MODE" echo "Test Pattern: $TEST_PATTERN" echo "" +echo "Packages installed:" +uv pip list + # Check storage and memory before tests echo "=== System Resources Before Tests ===" free -h 2>/dev/null || echo "free command not available" diff --git a/tests/integration/agents/test_agents.py b/tests/integration/agents/test_agents.py index 9121457d7..4d8d2faf2 100644 --- a/tests/integration/agents/test_agents.py +++ b/tests/integration/agents/test_agents.py @@ -134,6 +134,7 @@ def test_agent_simple(llama_stack_client, agent_config): def test_agent_name(llama_stack_client, text_model_id): + print(f"llama stack client package location: {llama_stack_client.__file__}") agent_name = f"test-agent-{uuid4()}" agent = Agent( llama_stack_client,