// 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(); }