Skip to content

Commit

Permalink
Muting Codec tests (#107470)
Browse files Browse the repository at this point in the history
Muting #107417
  • Loading branch information
jonathan-buttner authored Apr 15, 2024
1 parent 44c4788 commit d2cdee3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
import org.apache.lucene.index.DirectoryReader;
import org.apache.lucene.index.IndexWriter;
import org.apache.lucene.store.Directory;
import org.apache.lucene.tests.util.LuceneTestCase;
import org.apache.lucene.tests.util.LuceneTestCase.SuppressCodecs;
import org.elasticsearch.TransportVersion;
import org.elasticsearch.common.settings.Settings;
Expand All @@ -39,6 +40,7 @@

import static org.hamcrest.Matchers.instanceOf;

@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107417")
@SuppressCodecs("*") // we test against default codec so never get a random one here!
public class CodecTests extends ESTestCase {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,7 @@ public void testFloatVectorQueryBoundaries() throws IOException {
);
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107417")
public void testKnnVectorsFormat() throws IOException {
final int m = randomIntBetween(1, DEFAULT_MAX_CONN + 10);
final int efConstruction = randomIntBetween(1, DEFAULT_BEAM_WIDTH + 10);
Expand Down Expand Up @@ -1125,6 +1126,7 @@ public void testKnnVectorsFormat() throws IOException {
assertEquals(expectedString, knnVectorsFormat.toString());
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107417")
public void testKnnQuantizedHNSWVectorsFormat() throws IOException {
final int m = randomIntBetween(1, DEFAULT_MAX_CONN + 10);
final int efConstruction = randomIntBetween(1, DEFAULT_BEAM_WIDTH + 10);
Expand Down

0 comments on commit d2cdee3

Please sign in to comment.