We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16a866f commit cafb2fdCopy full SHA for cafb2fd
1 file changed
tests/StackExchange.Redis.Tests/VectorSetIntegrationTests.cs
@@ -1,6 +1,7 @@
1
using System;
2
using System.Globalization;
3
using System.Linq;
4
+using System.Runtime.InteropServices;
5
using System.Threading;
6
using System.Threading.Tasks;
7
using Newtonsoft.Json;
@@ -63,6 +64,7 @@ public async Task VectorSetAdd_WithAttributes()
63
64
[InlineData(VectorSetQuantization.Binary, true)]
65
public async Task VectorSetAdd_WithEverything(VectorSetQuantization quantization, bool useFp32)
66
{
67
+ Assert.SkipWhen(RuntimeInformation.IsOSPlatform(OSPlatform.Windows), "CI oddness on Windows; needs attention");
68
await using var conn = Create(require: RedisFeatures.v8_0_0_M04);
69
var db = conn.GetDatabase();
70
var key = Me() + "/" + quantization;
0 commit comments