diff --git a/doc/contributing.rst b/doc/contributing.rst index fd4ba77..c9597a6 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -140,7 +140,7 @@ Preparing Pull Requests Release History --------------- -v0.3.2 (not released) +v0.3.2 ~~~~~~~~~~~~~~~~~~~~~~~~~ - Fix bug producing TypeError when `weights` is provided with 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):