Skip to content

Commit f788fdc

Browse files
Disable OpenAIAssistant structured output integration tests (#4451)
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>
1 parent 4dc20c6 commit f788fdc

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
// Copyright (c) Microsoft. All rights reserved.
22

3+
using System.Threading.Tasks;
34
using AgentConformance.IntegrationTests;
45

56
namespace OpenAIAssistant.IntegrationTests;
67

78
public class OpenAIAssistantStructuredOutputRunTests() : StructuredOutputRunTests<OpenAIAssistantFixture>(() => new())
89
{
10+
private const string SkipReason = "Fails intermittently on the build agent/CI";
11+
12+
[Fact(Skip = SkipReason)]
13+
public override Task RunWithResponseFormatReturnsExpectedResultAsync() =>
14+
base.RunWithResponseFormatReturnsExpectedResultAsync();
15+
16+
[Fact(Skip = SkipReason)]
17+
public override Task RunWithGenericTypeReturnsExpectedResultAsync() =>
18+
base.RunWithGenericTypeReturnsExpectedResultAsync();
19+
20+
[Fact(Skip = SkipReason)]
21+
public override Task RunWithPrimitiveTypeReturnsExpectedResultAsync() =>
22+
base.RunWithPrimitiveTypeReturnsExpectedResultAsync();
923
}

0 commit comments

Comments
 (0)