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

10 statements  

« prev     ^ index     » next       coverage.py v7.3.1, created at 2023-09-23 06:43 +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 

14from . import overrides 

15 

16__all__ = ( 

17 _private.utils.__all__ + ['TestCase', 'overrides'] 

18) 

19 

20from numpy._pytesttester import PytestTester 

21test = PytestTester(__name__) 

22del PytestTester