mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
cc85bbc2dc
Azure.AI.Agents.Persistent 1.2.0-beta.10 now targets ME.AI 10.4.0+, resolving the compatibility issue that required disabling this package. - Remove IsPackable=false from the csproj - Re-enable all 6 integration test classes (IntegrationDisabled → Integration) - Remove outdated compatibility warning from README.md Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
31 lines
1.1 KiB
C#
31 lines
1.1 KiB
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace AzureAIAgentsPersistent.IntegrationTests;
|
|
|
|
[Trait("Category", "Integration")]
|
|
public class AzureAIAgentsPersistentStructuredOutputRunTests() : StructuredOutputRunTests<AzureAIAgentsPersistentFixture>(() => new())
|
|
{
|
|
private const string SkipReason = "Fails intermittently on the build agent/CI";
|
|
|
|
public override Task RunWithResponseFormatReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithResponseFormatReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithGenericTypeReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithGenericTypeReturnsExpectedResultAsync();
|
|
}
|
|
|
|
public override Task RunWithPrimitiveTypeReturnsExpectedResultAsync()
|
|
{
|
|
Assert.SkipWhen(SkipReason is not null, SkipReason ?? string.Empty);
|
|
return base.RunWithPrimitiveTypeReturnsExpectedResultAsync();
|
|
}
|
|
}
|