File tree 2 files changed +2
-2
lines changed 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 9
9
csgraph_to_dense , csgraph_from_dense
10
10
except ImportError :
11
11
# Oldish versions of scipy don't have that
12
- raise SkipTest ("Old version of scipy, doesn't have csgraph" )
12
+ raise SkipTest ("Old version of scipy, doesn't have csgraph. " )
13
13
14
14
15
15
def test_graph_breadth_first ():
Original file line number Diff line number Diff line change @@ -297,9 +297,9 @@ def is_abstract(c):
297
297
path = sklearn .__path__
298
298
for importer , modname , ispkg in pkgutil .walk_packages (
299
299
path = path , prefix = 'sklearn.' , onerror = lambda x : None ):
300
- module = __import__ (modname , fromlist = "dummy" )
301
300
if ".tests." in modname :
302
301
continue
302
+ module = __import__ (modname , fromlist = "dummy" )
303
303
classes = inspect .getmembers (module , inspect .isclass )
304
304
all_classes .extend (classes )
305
305
You can’t perform that action at this time.
0 commit comments