Skip to content

Commit 5431cfd

Browse files
committed
Revert "Use local SDK wheel for tutorial tests when --build-cli is set"
This reverts commit edb7a99.
1 parent edb7a99 commit 5431cfd

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

examples/tutorials/run_agent_test.sh

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -270,16 +270,7 @@ run_test() {
270270
fi
271271

272272
# Stream pytest output directly in real-time
273-
if [ "$BUILD_CLI" = true ]; then
274-
local wheel_file=$(ls /home/runner/work/*/*/dist/agentex_sdk-*.whl 2>/dev/null | head -n1)
275-
if [[ -n "$wheel_file" ]]; then
276-
uv run --with "$wheel_file" pytest tests/test_agent.py -v -s
277-
else
278-
uv run pytest tests/test_agent.py -v -s
279-
fi
280-
else
281-
uv run pytest tests/test_agent.py -v -s
282-
fi
273+
uv run pytest tests/test_agent.py -v -s
283274
exit_code=$?
284275

285276
if [ $exit_code -eq 0 ]; then

0 commit comments

Comments
 (0)