Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/numpy/testing/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.2.2, created at 2023-03-23 06:06 +0000

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 . import _private 

11from ._private.utils import * 

12from ._private.utils import (_assert_valid_refcount, _gen_alignment_data) 

13from ._private import extbuild, decorators as dec 

14from ._private.nosetester import ( 

15 run_module_suite, NoseTester as Tester 

16 ) 

17 

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

19 

20from numpy._pytesttester import PytestTester 

21test = PytestTester(__name__) 

22del PytestTester