Skip to content

Commit

Permalink
test: disable remaining pod-based index tests
Browse files Browse the repository at this point in the history
  • Loading branch information
neon-sunset committed Jul 18, 2024
1 parent c64d63d commit e384265
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/IndexTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ public class IndexTests
[InlineData(Metric.DotProduct, true)]
[InlineData(Metric.Cosine, true)]
[InlineData(Metric.Euclidean, true)]
[InlineData(Metric.DotProduct, false)]
[InlineData(Metric.Cosine, false)]
[InlineData(Metric.Euclidean, false)]
[InlineData(Metric.DotProduct, false, Skip = "Test environment uses free tier which does not support pod-based indexes.")]
[InlineData(Metric.Cosine, false, Skip = "Test environment uses free tier which does not support pod-based indexes.")]
[InlineData(Metric.Euclidean, false, Skip = "Test environment uses free tier which does not support pod-based indexes.")]
public async Task Create_and_delete_index(Metric metric, bool serverless)
{
var indexName = serverless ? "serverless-index" : "pod-based-index";
Expand Down

0 comments on commit e384265

Please sign in to comment.