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 d6fe96a commit c0b3377Copy full SHA for c0b3377
1 file changed
tests/test_datasets/test_dataset_functions.py
@@ -1891,8 +1891,8 @@ def _dataset_data_file_is_downloaded(did: int):
1891
if not cache_directory.exists():
1892
TestBase.logger.warning(f"Cache directory {cache_directory} does not exist. Data file is not downloaded.")
1893
TestBase.logger.warning(
1894
- f"Contents of cache directory: {list((Path(openml.config.get_cache_directory()) / 'minio').iterdir())}"
1895
- )
+ f"Contents of cache directory: {list((Path(openml.config.get_cache_directory()) / 'minio' / 'minio').iterdir())}"
+ )
1896
return False
1897
return any(f.suffix in (".pq", ".arff") for f in cache_directory.iterdir())
1898
0 commit comments