From 9aca6723dae405c28f61846aa44389fb4c5ef533 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Mon, 27 Oct 2025 15:25:01 +0000 Subject: [PATCH 1/2] mark test hdf5 filters as flaky --- tests/test_filter_pipeline_v2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_filter_pipeline_v2.py b/tests/test_filter_pipeline_v2.py index ba5ec0a4..e24820d9 100644 --- a/tests/test_filter_pipeline_v2.py +++ b/tests/test_filter_pipeline_v2.py @@ -17,6 +17,7 @@ def generate_data(): return np.random.rand(100, 100) +@@pytest.mark.flaky @pytest.mark.parametrize("chunk_size", [None, (10, 10), (20, 20)], ids=lambda x: f"chunk_{x}") @pytest.mark.parametrize("compression", [None, 9, "lzf"], ids=lambda x: f"compression_{x}") @pytest.mark.parametrize("shuffle", [True, False], ids=lambda x: f"shuffle_{x}") From 063bac58b13c5eb10f18d2f6c6c60e7cb3920c95 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Mon, 27 Oct 2025 15:31:19 +0000 Subject: [PATCH 2/2] typo --- tests/test_filter_pipeline_v2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_filter_pipeline_v2.py b/tests/test_filter_pipeline_v2.py index e24820d9..7acf56fe 100644 --- a/tests/test_filter_pipeline_v2.py +++ b/tests/test_filter_pipeline_v2.py @@ -17,7 +17,7 @@ def generate_data(): return np.random.rand(100, 100) -@@pytest.mark.flaky +@pytest.mark.flaky @pytest.mark.parametrize("chunk_size", [None, (10, 10), (20, 20)], ids=lambda x: f"chunk_{x}") @pytest.mark.parametrize("compression", [None, 9, "lzf"], ids=lambda x: f"compression_{x}") @pytest.mark.parametrize("shuffle", [True, False], ids=lambda x: f"shuffle_{x}")