File size: 605 Bytes
0c44e73 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import os
import pytest
import datasets as ds
@pytest.fixture
def dataset_path() -> str:
return "Magazine.py"
@pytest.mark.skipif(
condition=bool(os.environ.get("CI", False)),
reason=(
"Because this loading script downloads a large dataset, "
"we will skip running it on CI."
),
)
@pytest.mark.parametrize(
argnames=("expected_num_dataset",),
argvalues=((3919,),),
)
def test_load_dataset(dataset_path: str, expected_num_dataset: int):
dataset = ds.load_dataset(path=dataset_path, token=True)
assert dataset["train"].num_rows == expected_num_dataset
|