@@ -130,8 +130,7 @@ TEST_CASE("api_ivf_flat_index: init constructor", "[api_ivf_flat_index]") {
130130 }
131131}
132132
133- TEST_CASE (
134- " api_ivf_flat_index: infer feature type" , " [api_ivf_flat_index][ci-skip]" ) {
133+ TEST_CASE (" api_ivf_flat_index: infer feature type" , " [api_ivf_flat_index]" ) {
135134 auto a = IndexIVFFlat (std::make_optional<IndexOptions>(
136135 {{" id_type" , " uint32" }, {" px_type" , " uint32" }}));
137136 auto ctx = tiledb::Context{};
@@ -142,8 +141,7 @@ TEST_CASE(
142141 CHECK (a.px_type () == TILEDB_UINT32);
143142}
144143
145- TEST_CASE (
146- " api_ivf_flat_index: infer dimension" , " [api_ivf_flat_index][ci-skip]" ) {
144+ TEST_CASE (" api_ivf_flat_index: infer dimension" , " [api_ivf_flat_index]" ) {
147145 auto a = IndexIVFFlat (std::make_optional<IndexOptions>(
148146 {{" id_type" , " uint32" }, {" px_type" , " uint32" }}));
149147 auto ctx = tiledb::Context{};
@@ -158,7 +156,7 @@ TEST_CASE(
158156
159157TEST_CASE (
160158 " api_ivf_flat_index: api_ivf_flat_index write and read" ,
161- " [api_ivf_flat_index][ci-skip] " ) {
159+ " [api_ivf_flat_index]" ) {
162160 auto ctx = tiledb::Context{};
163161 std::string api_ivf_flat_index_uri =
164162 (std::filesystem::temp_directory_path () / " api_ivf_flat_index" ).string ();
@@ -182,7 +180,7 @@ TEST_CASE(
182180
183181TEST_CASE (
184182 " api_ivf_flat_index: build index and query in place infinite" ,
185- " [api_ivf_flat_index][ci-skip] " ) {
183+ " [api_ivf_flat_index]" ) {
186184 auto ctx = tiledb::Context{};
187185 size_t k_nn = 10 ;
188186 size_t nprobe = GENERATE (8 , 32 );
@@ -220,7 +218,7 @@ TEST_CASE(
220218
221219TEST_CASE (
222220 " api_ivf_flat_index: read index and query infinite and finite" ,
223- " [api_ivf_flat_index][ci-skip] " ) {
221+ " [api_ivf_flat_index]" ) {
224222 auto ctx = tiledb::Context{};
225223 size_t k_nn = 10 ;
226224 size_t nprobe = GENERATE (8 , 32 );
0 commit comments