We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 747341e commit 8b8d97dCopy full SHA for 8b8d97d
scripts/run_examples.sh
@@ -40,6 +40,7 @@ exclude_files=(
40
"examples/mistral/agents/async_conversation_run_stream.py"
41
"examples/mistral/agents/async_conversation_run_mcp.py"
42
"examples/mistral/agents/async_conversation_run_mcp_remote.py"
43
+ "examples/mistral/agents/async_multi_turn_conversation"
44
)
45
46
# Check if the no-extra-dep flag is set
@@ -64,8 +65,8 @@ run_test_with_retries() {
64
65
echo "Running $file (attempt $attempt/$RETRY_COUNT)"
66
67
# Run the script and capture both exit status and error output
- local current_output=$(python3 "$file" 2>&1)
68
- local exit_code=$?
+ current_output=$(python3 "$file" 2>&1)
69
+ exit_code=$?
70
71
if [ $exit_code -eq 0 ]; then
72
echo "Success"
0 commit comments