blob: 51e8d62c4115a66375ff12c3f44e6382c07c99d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
''' Define test function for scipy package
Module tests for presence of useful version of nose. If present
returns NoseTester, otherwise returns a placeholder test routine
reporting lack of nose and inability to run tests. Typical use is in
module __init__:
from scipy.testing.pkgtester import Tester
test = Tester().test
See nosetester module for test implementation
'''
from numpy.testing.nosetester import NoseTester as Tester
|