diff --git a/.github/workflows/live-test.yml b/.github/workflows/live-test.yml index f5fc50874..b3874d5b4 100644 --- a/.github/workflows/live-test.yml +++ b/.github/workflows/live-test.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v2 - name: Run live tests - run: dotnet test + run: dotnet test ./tests/OpenAI.Tests.csproj --configuration Release --filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Moderations&TestCategory!=Manual" --logger "trx;LogFilePrefix=live" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a027595f..9defd534c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: ${{ env.version_suffix_args }} - name: Run Live Tests - run: dotnet test + run: dotnet test ./tests/OpenAI.Tests.csproj --configuration Release --filter="TestCategory!=Smoke&TestCategory!=Images&TestCategory!=Moderations&TestCategory!=Manual" --logger "trx;LogFilePrefix=live"