Skip to content

Commit

Permalink
run test_all_chunking_patterns_dd_hist with hypothesis deadline=None
Browse files Browse the repository at this point in the history
  • Loading branch information
dougiesquire committed Sep 20, 2022
1 parent f8d6a63 commit a32899a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xhistogram/test/test_chunking_hypotheses.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit a32899a

Please sign in to comment.