Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 187850a

Browse files
chore: disable unit tests due to model got removed
1 parent 4434391 commit 187850a

File tree

1 file changed

+23
-22
lines changed

1 file changed

+23
-22
lines changed

engine/test/components/test_huggingface_utils.cc

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,29 @@ TEST_F(HuggingFaceUtilTestSuite, TestGetModelRepositoryBranches) {
1616
EXPECT_EQ(branches.value()["gguf"].ref, "refs/heads/gguf");
1717
}
1818

19-
TEST_F(HuggingFaceUtilTestSuite, TestGetHuggingFaceModelRepoInfoSuccessfully) {
20-
auto model_info =
21-
huggingface_utils::GetHuggingFaceModelRepoInfo("cortexso", "tinyllama");
22-
23-
EXPECT_TRUE(model_info.has_value());
24-
EXPECT_EQ(model_info->id, "cortexso/tinyllama");
25-
EXPECT_EQ(model_info->modelId, "cortexso/tinyllama");
26-
EXPECT_EQ(model_info->author, "cortexso");
27-
EXPECT_EQ(model_info->disabled, false);
28-
EXPECT_EQ(model_info->gated, false);
29-
30-
auto tag_contains_gguf =
31-
std::find(model_info->tags.begin(), model_info->tags.end(), "gguf") !=
32-
model_info->tags.end();
33-
EXPECT_TRUE(tag_contains_gguf);
34-
35-
auto contain_gguf_info = model_info->gguf.has_value();
36-
EXPECT_TRUE(contain_gguf_info);
37-
38-
auto sibling_not_empty = !model_info->siblings.empty();
39-
EXPECT_TRUE(sibling_not_empty);
40-
}
19+
// temporary disable this test due to the model got removed
20+
// TEST_F(HuggingFaceUtilTestSuite, TestGetHuggingFaceModelRepoInfoSuccessfully) {
21+
// auto model_info =
22+
// huggingface_utils::GetHuggingFaceModelRepoInfo("cortexso", "tinyllama");
23+
24+
// EXPECT_TRUE(model_info.has_value());
25+
// EXPECT_EQ(model_info->id, "cortexso/tinyllama");
26+
// EXPECT_EQ(model_info->modelId, "cortexso/tinyllama");
27+
// EXPECT_EQ(model_info->author, "cortexso");
28+
// EXPECT_EQ(model_info->disabled, false);
29+
// EXPECT_EQ(model_info->gated, false);
30+
31+
// auto tag_contains_gguf =
32+
// std::find(model_info->tags.begin(), model_info->tags.end(), "gguf") !=
33+
// model_info->tags.end();
34+
// EXPECT_TRUE(tag_contains_gguf);
35+
36+
// auto contain_gguf_info = model_info->gguf.has_value();
37+
// EXPECT_TRUE(contain_gguf_info);
38+
39+
// auto sibling_not_empty = !model_info->siblings.empty();
40+
// EXPECT_TRUE(sibling_not_empty);
41+
// }
4142

4243
TEST_F(HuggingFaceUtilTestSuite,
4344
TestGetHuggingFaceModelRepoInfoReturnNullGgufInfoWhenNotAGgufModel) {

0 commit comments

Comments
 (0)