We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f909bd commit 974f492Copy full SHA for 974f492
tests/test_numpy_hash.py
@@ -9,7 +9,13 @@
9
np = pytest.importorskip("numpy")
10
11
12
-@pytest.mark.parametrize("backend", ["memory", "pickle"])
+@pytest.mark.parametrize(
13
+ "backend",
14
+ [
15
+ pytest.param("memory", marks=pytest.mark.memory),
16
+ pytest.param("pickle", marks=pytest.mark.pickle),
17
+ ],
18
+)
19
def test_default_hash_func_uses_array_content_for_cache_keys(backend, tmp_path):
20
"""Verify equal arrays map to a cache hit and different arrays miss."""
21
call_count = 0
0 commit comments