mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
9511c414f4
* Disable intermittently failing AzureAIAgentsPersistent integration tests Skip three StructuredOutputRunTests tests that fail intermittently: - RunWithGenericTypeReturnsExpectedResultAsync - RunWithPrimitiveTypeReturnsExpectedResultAsync - RunWithResponseFormatReturnsExpectedResultAsync Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Update dotnet/tests/AzureAIAgentsPersistent.IntegrationTests/AzureAIAgentsPersistentStructuredOutputRunTests.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
24 lines
912 B
C#
24 lines
912 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace AzureAIAgentsPersistent.IntegrationTests;
|
|
|
|
public class AzureAIAgentsPersistentStructuredOutputRunTests() : StructuredOutputRunTests<AzureAIAgentsPersistentFixture>(() => new())
|
|
{
|
|
private const string SkipReason = "Fails intermittently on the build agent/CI";
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithResponseFormatReturnsExpectedResultAsync() =>
|
|
base.RunWithResponseFormatReturnsExpectedResultAsync();
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithGenericTypeReturnsExpectedResultAsync() =>
|
|
base.RunWithGenericTypeReturnsExpectedResultAsync();
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithPrimitiveTypeReturnsExpectedResultAsync() =>
|
|
base.RunWithPrimitiveTypeReturnsExpectedResultAsync();
|
|
}
|