Skip to content

Commit 96a5618

Browse files
committed
Excluded unit test radically disappearing features
1 parent c4ecf66 commit 96a5618

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

river/neighbors/samknn_classifier.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,11 @@ def __init__(
106106
self.ltm = SAMkNNLongTermMemory(self.n_neighbors, dist_func=self.dist_func)
107107

108108
def _unit_test_skips(self):
109-
return {"check_emerging_features", "check_disappearing_features"}
109+
return {
110+
"check_emerging_features",
111+
"check_disappearing_features",
112+
"check_radically_disappearing_features",
113+
}
110114

111115
@property
112116
def _multiclass(self):

0 commit comments

Comments
 (0)