Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""Common test support for all numpy test scripts. 

2 

3This single module should provide all the common functionality for numpy tests 

4in a single location, so that test scripts can just import it and work right 

5away. 

6 

7""" 

8from unittest import TestCase 

9 

10from ._private.utils import * 

11from ._private import decorators as dec 

12from ._private.nosetester import ( 

13 run_module_suite, NoseTester as Tester 

14 ) 

15 

16__all__ = _private.utils.__all__ + ['TestCase', 'run_module_suite'] 

17 

18from numpy._pytesttester import PytestTester 

19test = PytestTester(__name__) 

20del PytestTester