Skip to content

Commit

Permalink
reduce the maximum number of rings to reduce the runtime of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keewis committed May 17, 2024
1 parent 924c153 commit 98f9a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion healpix_convolution/tests/test_neighbours.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
requires_dask = pytest.mark.skipif(not has_dask, reason="needs dask.array")


@given(st.integers(min_value=0, max_value=300))
@given(st.integers(min_value=0, max_value=200))
def test_generate_offsets(ring):
kernel_size = 2 * ring + 1
kernel = np.zeros(shape=(kernel_size, kernel_size))
Expand Down

0 comments on commit 98f9a06

Please sign in to comment.