@@ -36,26 +36,29 @@ jobs:
3636 -name :Checkout code
3737uses :actions/checkout@v2
3838
39+ -name :Restore tools
40+ run :dotnet tool restore --add-source https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-net/nuget/v3/index.json
41+
3942# Pack the client NuGet package and include URL back to the repository and release tag
40- -name :Build andPack
43+ -name :Build andpack
4144run :dotnet pack
4245--configuration Release
4346--output "${{ github.workspace }}/artifacts/packages"
4447/p:PackageProjectUrl="${{ github.server_url }}/${{ github.repository }}/tree/${{ github.event.release.tag_name }}"
4548/p:PackageReleaseNotes="${{ github.server_url }}/${{ github.repository }}/blob/${{ github.event.release.tag_name }}/CHANGELOG.md"
4649${{ env.version_suffix_args }}
4750
48- -name :Unit Test
51+ -name :Run unit tests
4952run :dotnet test
5053--configuration Release
5154--filter="TestCategory=Smoke&TestCategory!=Manual"
5255--logger "trx;LogFileName=${{ github.workspace }}/artifacts/test-results/smoke.trx"
5356${{ env.version_suffix_args }}
5457
55- -name :RunLive Tests
58+ -name :Runrecorded tests
5659run :dotnet test ./tests/OpenAI.Tests.csproj
5760--configuration Release
58- --filter="TestCategory!=Smoke& TestCategory!=Assistants& TestCategory!=StoredChat &TestCategory!=Images&TestCategory!=Uploads&TestCategory!=Moderations&TestCategory!=FineTuning&TestCategory!=Containers&TestCategory!=Conversation&TestCategory!=MCP&TestCategory!=Manual "
61+ --filter="( TestCategory=Chat| TestCategory=Embeddings| TestCategory=Responses) &TestCategory!=MPFD "
5962--logger "trx;LogFilePrefix=live"
6063--results-directory ${{ github.workspace }}/artifacts/test-results
6164${{ env.version_suffix_args }}
@@ -118,7 +121,7 @@ jobs:
118121path :${{ github.workspace }}/build-artifacts
119122
120123deploy :
121- name :PublishPackage
124+ name :Publishpackage
122125needs :sign
123126runs-on :ubuntu-latest
124127steps :