15 lines
363 B
C#
15 lines
363 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using VectorData.ConformanceTests;
|
|
|
|
namespace Redis.ConformanceTests;
|
|
|
|
public class RedisTestSuiteImplementationTests : TestSuiteImplementationTests
|
|
{
|
|
protected override ICollection<Type> IgnoredTestBases { get; } =
|
|
[
|
|
// Hybrid search not supported
|
|
typeof(HybridSearchTests<>)
|
|
];
|
|
}
|