diff --git a/.github/workflows/dotnet-build-and-test.yml b/.github/workflows/dotnet-build-and-test.yml index 381481aa0f..906a1ece7b 100644 --- a/.github/workflows/dotnet-build-and-test.yml +++ b/.github/workflows/dotnet-build-and-test.yml @@ -64,14 +64,6 @@ jobs: - { targetFramework: "net9.0", os: "windows-latest", configuration: Release } - { targetFramework: "net472", os: "windows-latest", configuration: Release, integration-tests: true, environment: "integration" } - services: - azurite: - image: mcr.microsoft.com/azure-storage/azurite:latest - ports: - - 10000:10000 - - 10001:10001 - - 10002:10002 - runs-on: ${{ matrix.os }} environment: ${{ matrix.environment }} steps: @@ -88,7 +80,6 @@ jobs: uses: actions/setup-dotnet@v5.0.0 with: global-json-file: ${{ github.workspace }}/dotnet/global.json - - name: Build dotnet solutions shell: bash run: | @@ -248,4 +239,4 @@ jobs: if: contains(join(needs.*.result, ','), 'cancelled') uses: actions/github-script@v8 with: - script: core.setFailed('Integration Tests Cancelled!') + script: core.setFailed('Integration Tests Cancelled!') \ No newline at end of file diff --git a/dotnet/tests/Hosting.AgentThreadStore.IntegrationTests/TestRunner.cs b/dotnet/tests/Hosting.AgentThreadStore.IntegrationTests/TestRunner.cs index 851e647f33..73bf71fa83 100644 --- a/dotnet/tests/Hosting.AgentThreadStore.IntegrationTests/TestRunner.cs +++ b/dotnet/tests/Hosting.AgentThreadStore.IntegrationTests/TestRunner.cs @@ -8,9 +8,7 @@ using Hosting.AgentThreadStore.IntegrationTests.Mock; using Microsoft.Agents.AI; using Microsoft.Agents.AI.Hosting; using Microsoft.Extensions.AI; -using Microsoft.VisualStudio.TestPlatform.Utilities; using Xunit.Abstractions; -using Xunit.Sdk; using ThreadStore = Microsoft.Agents.AI.Hosting.AgentThreadStore; namespace Hosting.AgentThreadStore.IntegrationTests;