Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/tutorials/run_agent_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,15 @@ run_test() {


# Run the tests with retry mechanism
local -a pytest_cmd=("uv" "run" "pytest")
local -a pytest_cmd=("uv" "run" "--extra" "dev" "pytest")
if [ "$BUILD_CLI" = true ]; then
local wheel_file
wheel_file=$(ls /home/runner/work/*/*/dist/agentex_sdk-*.whl 2>/dev/null | head -n1)
if [[ -z "$wheel_file" ]]; then
wheel_file=$(ls "${SCRIPT_DIR}/../../dist/agentex_sdk-*.whl" 2>/dev/null | head -n1)
fi
if [[ -n "$wheel_file" ]]; then
pytest_cmd=("uv" "run" "--with" "$wheel_file" "pytest")
pytest_cmd=("uv" "run" "--extra" "dev" "--with" "$wheel_file" "pytest")
fi
fi

Expand Down
Loading