Skip to content

Commit 805b8d3

Browse files
committed
Add back var, std
1 parent acc0522 commit 805b8d3

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/strategies.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ def supported_dtypes() -> st.SearchStrategy[np.dtype]:
3232
NON_NUMPY_FUNCS = ["first", "last", "nanfirst", "nanlast", "count", "any", "all"] + list(
3333
SCIPY_STATS_FUNCS
3434
)
35-
SKIPPED_FUNCS = ["var", "std", "nanvar", "nanstd"]
36-
37-
func_st = st.sampled_from(
38-
[f for f in ALL_FUNCS if f not in NON_NUMPY_FUNCS and f not in SKIPPED_FUNCS]
39-
)
35+
func_st = st.sampled_from([f for f in ALL_FUNCS if f not in NON_NUMPY_FUNCS])
4036
numeric_arrays = npst.arrays(
4137
elements={"allow_subnormal": False}, shape=npst.array_shapes(), dtype=array_dtype_st
4238
)

0 commit comments

Comments
 (0)