From a32899ae52105025d31e7523c2e636230238875c Mon Sep 17 00:00:00 2001 From: dougiesquire Date: Tue, 20 Sep 2022 14:41:10 +1000 Subject: [PATCH] run test_all_chunking_patterns_dd_hist with hypothesis deadline=None --- xhistogram/test/test_chunking_hypotheses.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xhistogram/test/test_chunking_hypotheses.py b/xhistogram/test/test_chunking_hypotheses.py index 7feb333..51bdf9e 100644 --- a/xhistogram/test/test_chunking_hypotheses.py +++ b/xhistogram/test/test_chunking_hypotheses.py @@ -7,7 +7,7 @@ pytest.importorskip("hypothesis") import hypothesis.strategies as st # noqa -from hypothesis import given # noqa +from hypothesis import given, settings # noqa @st.composite @@ -65,6 +65,7 @@ def test_all_chunking_patterns_2d(self, chunks): np.testing.assert_allclose(hist, h.values) # TODO mark as slow? + @settings(deadline=None) @pytest.mark.parametrize("n_vars", [1, 2, 3, 4]) @given(chunk_shapes(n_dim=2, max_arr_len=7)) def test_all_chunking_patterns_dd_hist(self, n_vars, chunk_shapes):