From 2a84f4905954a69f6f92a31e4c72e0bb4b53f3cd Mon Sep 17 00:00:00 2001 From: Vecko <36369090+VeckoTheGecko@users.noreply.github.com> Date: Mon, 4 May 2026 16:54:48 +0200 Subject: [PATCH 1/2] MAINT: Mark test_open_dataset as flaky --- tests/datasets/test_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/datasets/test_remote.py b/tests/datasets/test_remote.py index 286b4247c..1f9bc6d5d 100644 --- a/tests/datasets/test_remote.py +++ b/tests/datasets/test_remote.py @@ -22,7 +22,7 @@ def test_open_dataset_non_existing(): with pytest.raises(ValueError, match="Dataset.*not found"): remote.open_remote_dataset("non_existing_dataset") - +@pytest.mark.flaky @pytest.mark.parametrize("name", remote.list_remote_datasets()) def test_open_dataset(name): ds = remote.open_remote_dataset(name) From eed042f990cc492f5916c45fde349296e9dd19d1 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 14:58:23 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/datasets/test_remote.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/datasets/test_remote.py b/tests/datasets/test_remote.py index 1f9bc6d5d..d4ad168cd 100644 --- a/tests/datasets/test_remote.py +++ b/tests/datasets/test_remote.py @@ -22,6 +22,7 @@ def test_open_dataset_non_existing(): with pytest.raises(ValueError, match="Dataset.*not found"): remote.open_remote_dataset("non_existing_dataset") + @pytest.mark.flaky @pytest.mark.parametrize("name", remote.list_remote_datasets()) def test_open_dataset(name):