This commit is contained in:
Korolev Dmitry
2025-11-04 18:32:37 +01:00
Unverified
parent 3f7b0d1085
commit 027d1e04a7
2 changed files with 1 additions and 12 deletions
+1 -10
View File
@@ -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!')
@@ -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;