diff --git a/dotnet/tests/OpenAIAssistant.IntegrationTests/OpenAIAssistantStructuredOutputRunTests.cs b/dotnet/tests/OpenAIAssistant.IntegrationTests/OpenAIAssistantStructuredOutputRunTests.cs index caa42ecc8d..e3b45bd5d2 100644 --- a/dotnet/tests/OpenAIAssistant.IntegrationTests/OpenAIAssistantStructuredOutputRunTests.cs +++ b/dotnet/tests/OpenAIAssistant.IntegrationTests/OpenAIAssistantStructuredOutputRunTests.cs @@ -1,9 +1,23 @@ // Copyright (c) Microsoft. All rights reserved. +using System.Threading.Tasks; using AgentConformance.IntegrationTests; namespace OpenAIAssistant.IntegrationTests; public class OpenAIAssistantStructuredOutputRunTests() : StructuredOutputRunTests(() => 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(); }