Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/numpy/testing/__init__.py : 100%

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.
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.
7"""
8from unittest import TestCase
10from ._private.utils import *
11from ._private import decorators as dec
12from ._private.nosetester import (
13 run_module_suite, NoseTester as Tester
14 )
16__all__ = _private.utils.__all__ + ['TestCase', 'run_module_suite']
18from numpy._pytesttester import PytestTester
19test = PytestTester(__name__)
20del PytestTester