File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,6 @@ def test_all_estimators():
20
20
estimators = all_estimators (include_meta_estimators = True )
21
21
assert len (estimators ) > 0
22
22
for name , Estimator in estimators :
23
- if name == 'CondensedNearestNeighbour' :
24
- continue
25
23
# some can just not be sensibly default constructed
26
24
yield (_named_check (check_estimator , name ), Estimator )
27
25
Original file line number Diff line number Diff line change 21
21
META_ESTIMATORS = []
22
22
# estimators that there is no way to default-construct sensibly
23
23
OTHER = ["Pipeline" , "FeatureUnion" ]
24
- # some strange ones
25
- DONT_TEST = []
24
+ # CNN leads to a segfault in Travis
25
+ DONT_TEST = ['CondensedNearestNeighbour' ]
26
26
27
27
28
28
def all_estimators (include_meta_estimators = False ,
You can’t perform that action at this time.
0 commit comments