mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
f788fdc72b
Skip all three structured output run tests in OpenAIAssistantStructuredOutputRunTests as they fail intermittently on the build agent/CI, matching the pattern already used in AzureAIAgentsPersistentStructuredOutputRunTests. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
24 lines
888 B
C#
24 lines
888 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIAssistant.IntegrationTests;
|
|
|
|
public class OpenAIAssistantStructuredOutputRunTests() : StructuredOutputRunTests<OpenAIAssistantFixture>(() => 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();
|
|
}
|