From 73ce9a908d8cf9e47f0b7a36bb8cab35eaa0656f Mon Sep 17 00:00:00 2001 From: SergeyMenshykh <68852919+SergeyMenshykh@users.noreply.github.com> Date: Wed, 4 Mar 2026 10:26:25 +0000 Subject: [PATCH] Disable OpenAIAssistant structured output integration tests 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> --- .../OpenAIAssistantStructuredOutputRunTests.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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(); }