We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b33a895 commit e2eddc6Copy full SHA for e2eddc6
1 file changed
tests/test_datasets/test_dataset_functions.py
@@ -1870,6 +1870,8 @@ def _dataset_features_is_downloaded(did: int):
1870
1871
def _dataset_data_file_is_downloaded(did: int):
1872
cache_directory = Path(openml.config.get_cache_directory()) / "minio/datasets/0000/0001"
1873
+ TestBase.logger.info(f"Checking for data file in {cache_directory}")
1874
+ TestBase.logger.info(f"Files in cache directory: {[f.name for f in Path(openml.config.get_cache_directory()).iterdir()]}")
1875
if not cache_directory.exists():
1876
return False
1877
return any(f.suffix in (".pq", ".arff") for f in cache_directory.iterdir())
0 commit comments