Skip to content

Commit acc0522

Browse files
committed
Expand groupby_reduce property tests
1 parent 4dbadae commit acc0522

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tests/test_properties.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,11 @@ def not_overflowing_array(array: np.ndarray[Any, Any]) -> bool:
6161
return result
6262

6363

64-
@given(data=st.data(), array=numeric_arrays, func=func_st)
64+
@given(
65+
data=st.data(),
66+
array=st.one_of(numeric_arrays, chunked_arrays(arrays=numeric_arrays)),
67+
func=func_st,
68+
)
6569
def test_groupby_reduce(data, array, func: str) -> None:
6670
# overflow behaviour differs between bincount and sum (for example)
6771
assume(not_overflowing_array(array))

0 commit comments

Comments
 (0)