commit: 8694ae7c4374a045cad3722602c9a6955cf02579
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 7 09:55:07 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Apr 7 09:55:34 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8694ae7c
sci-ml/datasets: drop test that needs network
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
sci-ml/datasets/datasets-3.0.2.ebuild | 22 +++++++++++++++++++++-
1 file changed, 21 insertions(+), 1 deletion(-)
diff --git a/sci-ml/datasets/datasets-3.0.2.ebuild
b/sci-ml/datasets/datasets-3.0.2.ebuild
index e6b81257061a..0d701b79377a 100644
--- a/sci-ml/datasets/datasets-3.0.2.ebuild
+++ b/sci-ml/datasets/datasets-3.0.2.ebuild
@@ -69,13 +69,18 @@ src_prepare() {
src_test() {
local EPYTEST_IGNORE=(
tests/features/test_audio.py
- tests/test_fingerprint.py
tests/packaged_modules/test_audiofolder.py
tests/packaged_modules/test_spark.py
+ tests/test_fingerprint.py
tests/test_iterable_dataset.py
+ tests/test_inspect.py
+ tests/test_load.py
+ tests/test_upstream_hub.py
)
local EPYTEST_DESELECT=(
+ tests/commands/test_test.py::test_test_command
+ tests/io/test_parquet.py::test_parquet_read_geoparquet
tests/packaged_modules/test_cache.py::test_cache_multi_configs
tests/packaged_modules/test_cache.py::test_cache_single_config
tests/test_arrow_dataset.py::BaseDatasetTest::test_filter_caching_on_disk
@@ -83,7 +88,22 @@ src_test() {
tests/test_distributed.py::test_torch_distributed_run
tests/test_file_utils.py::TestxPath::test_xpath_rglob
tests/test_file_utils.py::TestxPath::test_xpath_glob
+ tests/test_file_utils.py::test_xexists_private
+ tests/test_file_utils.py::test_xlistdir_private
+ tests/test_file_utils.py::test_xisdir_private
+ tests/test_file_utils.py::test_xisfile_private
+ tests/test_file_utils.py::test_xgetsize_private
+ tests/test_file_utils.py::test_xglob_private
+ tests/test_file_utils.py::test_xwalk_private
tests/test_hub.py::test_convert_to_parquet
+ tests/packaged_modules/test_cache.py::test_cache_capital_letters
+
tests/packaged_modules/test_folder_based_builder.py::test_data_files_with_different_levels_no_metadata
+
tests/packaged_modules/test_folder_based_builder.py::test_data_files_with_one_label_no_metadata
+
tests/test_data_files.py::test_DataFilesList_from_patterns_locally_with_extra_files
+
tests/test_data_files.py::test_DataFilesDict_from_patterns_locally_or_remote_hashing
+ tests/test_file_utils.py::test_xopen_remote
+ tests/test_hub.py::test_delete_from_hub
+ tests/test_offline_util.py::test_offline_with_timeout
)
distutils-r1_src_test
}