File size: 729 Bytes
f689054 |
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 29 30 31 |
import os
import datasets as ds
import pytest
@pytest.fixture
def dataset_path() -> str:
return "PKU-PosterLayout.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_train",
"expected_num_test",
),
argvalues=((9974, 905),),
)
def test_load_dataset(dataset_path: str, expected_num_train: int, expected_num_test):
dataset = ds.load_dataset(path=dataset_path, token=True)
assert dataset["train"].num_rows == expected_num_train
assert dataset["test"].num_rows == expected_num_test
|