Skip to content

Commit dc0eefd

Browse files
.Net: Skip and AzureAIInference chat completion tests (#13451)
### Motivation and Context <!-- Thank you for your contribution to the semantic-kernel repo! Please help reviewers and future users, providing the following information: 1. Why is this change required? 2. What problem does it solve? 3. What scenario does it contribute to? 4. If it fixes an open issue, please link to the issue here. --> ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 4a09cbd commit dc0eefd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

dotnet/src/IntegrationTests/Connectors/AzureAIInference/AzureAIInferenceChatCompletionServiceTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public sealed class AzureAIInferenceChatCompletionServiceTests(ITestOutputHelper
3535
.AddUserSecrets<AzureAIInferenceChatCompletionServiceTests>()
3636
.Build();
3737

38-
[Theory]
38+
[Theory(Skip = "For manual verification only")]
3939
[InlineData("Where is the most famous fish market in Seattle, Washington, USA?", "Pike Place")]
4040
public async Task InvokeGetChatMessageContentsAsync(string prompt, string expectedAnswerContains)
4141
{
@@ -57,7 +57,7 @@ public async Task InvokeGetChatMessageContentsAsync(string prompt, string expect
5757
Assert.Contains(expectedAnswerContains, result[0].Content, StringComparison.OrdinalIgnoreCase);
5858
}
5959

60-
[Theory]
60+
[Theory(Skip = "For manual verification only")]
6161
[InlineData("Where is the most famous fish market in Seattle, Washington, USA?", "Pike Place")]
6262
public async Task InvokeGetStreamingChatMessageContentsAsync(string prompt, string expectedAnswerContains)
6363
{
@@ -83,7 +83,7 @@ public async Task InvokeGetStreamingChatMessageContentsAsync(string prompt, stri
8383
Assert.Contains(expectedAnswerContains, fullContent.ToString(), StringComparison.OrdinalIgnoreCase);
8484
}
8585

86-
[Fact]
86+
[Fact(Skip = "For manual verification only")]
8787
public async Task ItCanUseChatForTextGenerationAsync()
8888
{
8989
// Arrange
@@ -102,7 +102,7 @@ public async Task ItCanUseChatForTextGenerationAsync()
102102
Assert.Contains("Uranus", result.GetValue<string>(), StringComparison.InvariantCultureIgnoreCase);
103103
}
104104

105-
[Fact]
105+
[Fact(Skip = "For manual verification only")]
106106
public async Task ItStreamingFromKernelTestAsync()
107107
{
108108
// Arrange
@@ -124,7 +124,7 @@ public async Task ItStreamingFromKernelTestAsync()
124124
Assert.Contains("Pike Place", fullResult.ToString(), StringComparison.OrdinalIgnoreCase);
125125
}
126126

127-
[Fact]
127+
[Fact(Skip = "For manual verification only")]
128128
public async Task ItHttpRetryPolicyTestAsync()
129129
{
130130
// Arrange
@@ -167,7 +167,7 @@ public async Task ItHttpRetryPolicyTestAsync()
167167
Assert.Equal((int)HttpStatusCode.Unauthorized, ((RequestFailedException)exception).Status);
168168
}
169169

170-
[Fact]
170+
[Fact(Skip = "For manual verification only")]
171171
public async Task ItShouldReturnInnerContentAsync()
172172
{
173173
// Arrange

0 commit comments

Comments
 (0)