mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
Disable (#1071)
This commit is contained in:
+2
-2
@@ -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
|
||||
|
||||
+6
-6
@@ -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);
|
||||
|
||||
+7
-7
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user