Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion tests/test_tasks/test_all_abstasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,21 @@

tasks = [t for t in MTEB().tasks_cls if t.metadata.name not in ALL_MOCK_TASKS]

datasets_not_available = [
"AfriSentiLangClassification",
"SNLHierarchicalClusteringP2P",
"SNLClustering",
"SNLHierarchicalClusteringS2S",
"SNLRetrieval",
]


dataset_revisions = list(
{ # deduplicate as multiple tasks rely on the same dataset (save us at least 100 test cases)
(t.metadata.dataset["path"], t.metadata.dataset["revision"])
for t in mteb.get_tasks(exclude_superseded=False)
if not isinstance(t, (AbsTaskAggregate, AbsTaskSpeedTask))
and t.metadata.name != "AfriSentiLangClassification"
and t.metadata.name not in datasets_not_available
and t.metadata.name not in ALL_MOCK_TASKS
}
)
Expand Down