Fixed indent on nose.run, so it will run when verbose is False

This commit is contained in:
Steven Silvester
2012-12-15 09:17:39 -06:00
parent 3175e73fce
commit 49119524e3
+1 -1
View File
@@ -79,7 +79,7 @@ else:
args = ['', pkg_dir, '--exe']
if verbose:
args.extend(['-v', '-s'])
nose.run('skimage', argv=args)
nose.run('skimage', argv=args)
test_verbose = functools.partial(test, verbose=True)
test_verbose.__doc__ = test.__doc__