File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2424 speakeasy_version : latest
2525 target : mistralai-sdk
2626 secrets :
27- github_access_token : ${{ secrets.SPEAKEASY_WORKFLOW_GITHUB_PAT }}
27+ github_access_token : ${{ secrets.GITHUB_TOKEN }}
2828 pypi_token : ${{ secrets.PYPI_TOKEN }}
2929 speakeasy_api_key : ${{ secrets.SPEAKEASY_API_KEY }}
Original file line number Diff line number Diff line change @@ -39,22 +39,26 @@ exclude_files=(
3939 " examples/mistral/mcp_servers/stdio_server.py"
4040 " examples/mistral/agents/async_conversation_run_stream.py"
4141 " 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"
42+ " examples/mistral/agents/async_conversation_run_mcp_remote.py"
4443)
4544
4645# Check if the no-extra-dep flag is set
4746if [ " $NO_EXTRA_DEP " = true ]; then
4847 # Add more files to the exclude list
4948 exclude_files+=(
50- " examples/mistral/agents/async_conversation_run_mcp_remote.py"
5149 " examples/mistral/agents/async_conversation_run_stream.py"
5250 " examples/mistral/agents/async_conversation_run.py"
51+ " examples/mistral/agents/async_multi_turn_conversation.py"
5352 )
5453fi
5554
5655failed=0
5756
57+ echo " Skipping scripts"
58+ for file in " ${exclude_files[@]} " ; do
59+ echo " $file "
60+ done
61+
5862# Function to run a test with retries
5963run_test_with_retries () {
6064 local file=" $1 "
You can’t perform that action at this time.
0 commit comments