From 79414f92989d89014315b7f7d6d57cf471686c62 Mon Sep 17 00:00:00 2001 From: Chris <66376200+crickman@users.noreply.github.com> Date: Wed, 1 Oct 2025 10:03:55 -0700 Subject: [PATCH] Disable (#1071) --- .../AzureAgentProviderTest.cs | 4 ++-- .../DeclarativeCodeGenTest.cs | 12 ++++++------ .../DeclarativeWorkflowTest.cs | 14 +++++++------- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs index 45b7735eb9..e6b660845a 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/AzureAgentProviderTest.cs @@ -18,7 +18,7 @@ public sealed class AzureAgentProviderTest(ITestOutputHelper output) : Integrati { private AzureAIConfiguration? _configuration; - [Fact] + [Fact(Skip = "Needs configuration")] public async Task ConversationTestAsync() { // Arrange @@ -48,7 +48,7 @@ public sealed class AzureAgentProviderTest(ITestOutputHelper output) : Integrati Assert.Equal(messages[3].Text, message.Text); } - [Fact] + [Fact(Skip = "Needs configuration")] public async Task GetAgentTestAsync() { // Arrange diff --git a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeCodeGenTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeCodeGenTest.cs index 97f4a3d30f..7650bab18a 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeCodeGenTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeCodeGenTest.cs @@ -15,16 +15,16 @@ namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests; public sealed class DeclarativeCodeGenTest(ITestOutputHelper output) : WorkflowTest(output) { [Theory] - [InlineData("SendActivity.yaml", "SendActivity.json")] - [InlineData("InvokeAgent.yaml", "InvokeAgent.json")] - [InlineData("ConversationMessages.yaml", "ConversationMessages.json")] + [InlineData("SendActivity.yaml", "SendActivity.json", Skip = "Needs configuration")] + [InlineData("InvokeAgent.yaml", "InvokeAgent.json", Skip = "Needs configuration")] + [InlineData("ConversationMessages.yaml", "ConversationMessages.json", Skip = "Needs configuration")] public Task ValidateCaseAsync(string workflowFileName, string testcaseFileName) => this.RunWorkflowAsync(Path.Combine("Workflows", workflowFileName), testcaseFileName); [Theory] - [InlineData("Marketing.yaml", "Marketing.json")] - [InlineData("MathChat.yaml", "MathChat.json")] - [InlineData("DeepResearch.yaml", "DeepResearch.json")] + [InlineData("Marketing.yaml", "Marketing.json", Skip = "Needs configuration")] + [InlineData("MathChat.yaml", "MathChat.json", Skip = "Needs configuration")] + [InlineData("DeepResearch.yaml", "DeepResearch.json", Skip = "Needs configuration")] [InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "TODO")] public Task ValidateScenarioAsync(string workflowFileName, string testcaseFileName) => this.RunWorkflowAsync(Path.Combine(GetRepoFolder(), "workflow-samples", workflowFileName), testcaseFileName); diff --git a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs index 9da2de264c..668e25de74 100644 --- a/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs +++ b/dotnet/tests/Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests/DeclarativeWorkflowTest.cs @@ -15,17 +15,17 @@ namespace Microsoft.Agents.AI.Workflows.Declarative.IntegrationTests; public sealed class DeclarativeWorkflowTest(ITestOutputHelper output) : WorkflowTest(output) { [Theory] - [InlineData("SendActivity.yaml", "SendActivity.json")] - [InlineData("InvokeAgent.yaml", "InvokeAgent.json")] - [InlineData("ConversationMessages.yaml", "ConversationMessages.json")] + [InlineData("SendActivity.yaml", "SendActivity.json", Skip = "Needs configuration")] + [InlineData("InvokeAgent.yaml", "InvokeAgent.json", Skip = "Needs configuration")] + [InlineData("ConversationMessages.yaml", "ConversationMessages.json", Skip = "Needs configuration")] public Task ValidateCaseAsync(string workflowFileName, string testcaseFileName) => this.RunWorkflowAsync(Path.Combine("Workflows", workflowFileName), testcaseFileName); [Theory] - [InlineData("Marketing.yaml", "Marketing.json")] - [InlineData("MathChat.yaml", "MathChat.json")] - [InlineData("DeepResearch.yaml", "DeepResearch.json")] - [InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "TODO")] + [InlineData("Marketing.yaml", "Marketing.json", Skip = "Needs configuration")] + [InlineData("MathChat.yaml", "MathChat.json", Skip = "Needs configuration")] + [InlineData("DeepResearch.yaml", "DeepResearch.json", Skip = "Needs configuration")] + [InlineData("HumanInLoop.yaml", "HumanInLoop.json", Skip = "Needs test support")] public Task ValidateScenarioAsync(string workflowFileName, string testcaseFileName) => this.RunWorkflowAsync(Path.Combine(GetRepoFolder(), "workflow-samples", workflowFileName), testcaseFileName);