Skip to content

Commit

Permalink
Enable the InMemoryTextSearchTests
Browse files Browse the repository at this point in the history
  • Loading branch information
markwallace-microsoft committed Oct 14, 2024
1 parent 718d5cc commit 5295a31
Showing 1 changed file with 0 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,51 +16,6 @@ namespace SemanticKernel.IntegrationTests.Data;
/// </summary>
public class InMemoryVectorStoreTextSearchTests : BaseVectorStoreTextSearchTests
{
// If null, all tests will be enabled
private const string SkipReason = "Failing in integration test pipeline so disabling while investigating a fix (issue 9168)";

[Fact(Skip = SkipReason)]
public override async Task CanSearchAsync()
{
await base.CanSearchAsync();
}

[Fact(Skip = SkipReason)]
public override async Task CanGetTextSearchResultsAsync()
{
await base.CanGetTextSearchResultsAsync();
}

[Fact(Skip = SkipReason)]
public override async Task CanGetSearchResultsAsync()
{
await base.CanGetSearchResultsAsync();
}

[Fact(Skip = SkipReason)]
public override async Task UsingTextSearchWithAFilterAsync()
{
await base.UsingTextSearchWithAFilterAsync();
}

[Fact(Skip = SkipReason)]
public override async Task FunctionCallingUsingCreateWithSearchAsync()
{
await base.FunctionCallingUsingCreateWithSearchAsync();
}

[Fact(Skip = SkipReason)]
public override async Task FunctionCallingUsingCreateWithGetSearchResultsAsync()
{
await base.FunctionCallingUsingCreateWithGetSearchResultsAsync();
}

[Fact(Skip = SkipReason)]
public override async Task FunctionCallingUsingGetTextSearchResultsAsync()
{
await base.FunctionCallingUsingGetTextSearchResultsAsync();
}

/// <inheritdoc/>
public async override Task<ITextSearch> CreateTextSearchAsync()
{
Expand Down

0 comments on commit 5295a31

Please sign in to comment.