Skip to content

Commit 177b8de

Browse files
committed
enable property tests
1 parent 24fb532 commit 177b8de

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/strategies.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,8 @@ def insert_nans(draw: st.DrawFn, array: np.ndarray) -> np.ndarray:
108108
"any",
109109
"all",
110110
] + list(SCIPY_STATS_FUNCS)
111-
SKIPPED_FUNCS = ["var", "std", "nanvar", "nanstd"]
112111

113-
func_st = st.sampled_from([f for f in ALL_FUNCS if f not in NON_NUMPY_FUNCS and f not in SKIPPED_FUNCS])
112+
func_st = st.sampled_from([f for f in ALL_FUNCS if f not in NON_NUMPY_FUNCS])
114113

115114

116115
@st.composite

0 commit comments

Comments
 (0)