Skip to content

Commit fb2a034

Browse files
authored
Remove [ci-skip] on unit tests (#275)
1 parent b0c5208 commit fb2a034

File tree

5 files changed

+14
-21
lines changed

5 files changed

+14
-21
lines changed

src/include/test/unit_api_ivf_flat_index.cc

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

159157
TEST_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

183181
TEST_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

221219
TEST_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);

src/include/test/unit_api_vamana_index.cc

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,7 @@ TEST_CASE("api_vamana_index: infer dimension", "[api_vamana_index]") {
158158
}
159159

160160
TEST_CASE(
161-
"api_vamana_index: api_vamana_index write and read",
162-
"[api_vamana_index][ci-skip]") {
161+
"api_vamana_index: api_vamana_index write and read", "[api_vamana_index]") {
163162
auto ctx = tiledb::Context{};
164163
std::string api_vamana_index_uri =
165164
(std::filesystem::temp_directory_path() / "api_vamana_index").string();
@@ -181,9 +180,7 @@ TEST_CASE(
181180
CHECK(a.adjacency_row_index_type() == b.adjacency_row_index_type());
182181
}
183182

184-
TEST_CASE(
185-
"api_vamana_index: build index and query in place infinite",
186-
"[api_vamana_index][ci-skip]") {
183+
TEST_CASE("api_vamana_index: build index and query", "[api_vamana_index]") {
187184
auto ctx = tiledb::Context{};
188185
size_t k_nn = 10;
189186
size_t nprobe = GENERATE(8, 32);
@@ -204,9 +201,7 @@ TEST_CASE(
204201
CHECK(recall == 1.0);
205202
}
206203

207-
TEST_CASE(
208-
"api_vamana_index: read index and query infinite and finite",
209-
"[api_vamana_index][ci-skip]") {
204+
TEST_CASE("api_vamana_index: read index and query", "[api_vamana_index]") {
210205
auto ctx = tiledb::Context{};
211206
size_t k_nn = 10;
212207
size_t nprobe = GENERATE(8, 32);

src/include/test/unit_ivf_qv.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ TEST_CASE("qv: test test", "[qv]") {
4242
REQUIRE(true);
4343
}
4444

45-
TEST_CASE("ivf qv: infinite all or none", "[ivf qv][ci-skip]") {
45+
TEST_CASE("ivf qv: infinite all or none", "[ivf qv]") {
4646
// vq_query_infinite_ram
4747
// vq_query_infinite_ram_2
4848

@@ -141,7 +141,7 @@ TEST_CASE("ivf qv: infinite all or none", "[ivf qv][ci-skip]") {
141141
}
142142
}
143143

144-
TEST_CASE("ivf qv: finite all or none", "[ivf qv][ci-skip]") {
144+
TEST_CASE("ivf qv: finite all or none", "[ivf qv]") {
145145
// vq_query_infinite_ram
146146
// vq_query_infinite_ram_2
147147

src/include/test/unit_ivf_vq.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ TEST_CASE("vq: test test", "[ivf vq]") {
4444
}
4545

4646
// vq_apply_query
47-
TEST_CASE("ivf vq: vq apply query", "[ivf vq][ci-skip]") {
47+
TEST_CASE("ivf vq: vq apply query", "[ivf vq]") {
4848
// vq_apply_query(query, shuffled_db, new_indices, active_queries, ids,
4949
// active_partitions, k_nn, first_part, last_part);
5050
REQUIRE(true);
5151
}
5252

53-
TEST_CASE("ivf vq: infinite all or none", "[ivf vq][ci-skip]") {
53+
TEST_CASE("ivf vq: infinite all or none", "[ivf vq]") {
5454
// vq_query_infinite_ram
5555
// vq_query_infinite_ram_2
5656

@@ -123,7 +123,7 @@ TEST_CASE("ivf vq: infinite all or none", "[ivf vq][ci-skip]") {
123123
}
124124
}
125125

126-
TEST_CASE("ivf vq: finite all or none", "[ivf vq][ci-skip]") {
126+
TEST_CASE("ivf vq: finite all or none", "[ivf vq]") {
127127
// vq_query_infinite_ram
128128
// vq_query_infinite_ram_2
129129

src/include/test/unit_slicing.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
std::string global_region = "us-east-1";
3939

40-
TEST_CASE("slice", "[linalg][ci-skip]") {
40+
TEST_CASE("slice", "[linalg]") {
4141
const bool debug = false;
4242

4343
tiledb::Context ctx_;

0 commit comments

Comments
 (0)