Skip to content

Commit 3f174a7

Browse files
committed
skip tests because dataset is gone
1 parent 0656365 commit 3f174a7

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

tests/test_adapters_e2e.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,7 @@ def test_langfuse_conversation_analysis(self):
205205
class TestHuggingFaceAdapterE2E:
206206
"""End-to-end tests for HuggingFace adapter with real datasets."""
207207

208+
@pytest.mark.skip(reason="gsm8k dataset no longer available on HuggingFace Hub")
208209
def test_gsm8k_adapter_real_data(self):
209210
"""Test loading real GSM8K data and converting to EvaluationRow."""
210211
try:
@@ -318,6 +319,7 @@ def math_transform(row: Dict[str, Any]) -> Dict[str, Any]:
318319

319320
print(f" Row {i}: Type={dataset_info.get('type')}, Level={dataset_info.get('level')}")
320321

322+
@pytest.mark.skip(reason="squad dataset no longer available on HuggingFace Hub")
321323
def test_custom_dataset_transform(self):
322324
"""Test adapter with a completely custom transformation."""
323325
try:
@@ -663,6 +665,7 @@ def google_books_transform(row: Dict[str, Any]) -> Dict[str, Any]:
663665
assert doc_freq > 5, f"Row {i} should have document frequency > 5"
664666

665667

668+
@pytest.mark.skip(reason="gsm8k dataset no longer available on HuggingFace Hub")
666669
def test_adapters_integration():
667670
"""Test that adapters work with evaluation pipeline."""
668671
print("Testing adapter integration with evaluation pipeline...")

0 commit comments

Comments
 (0)