Datasets:

Tasks:
Other
Languages:
Chinese
ArXiv:
License:
PKU-PosterLayout / tests /PKU-PosterLayout_test.py
shunk031's picture
Initialize (#1)
f689054 unverified
raw
history blame
729 Bytes
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