Run the test suite. This function is a stub that redirects to `numexpr3.tests.test_numexpr.test()`
(verbosity: int=1)
| 34 | from .interpreter import MAX_ARGS, set_tempsize |
| 35 | |
| 36 | def test(verbosity: int=1) -> unittest.TextTestResult: |
| 37 | ''' |
| 38 | Run the test suite. |
| 39 | |
| 40 | This function is a stub that redirects to `numexpr3.tests.test_numexpr.test()` |
| 41 | ''' |
| 42 | try: |
| 43 | from .tests import test |
| 44 | except ImportError as e: |
| 45 | raise ImportError('Could not import `numexpr3.tests`, was it included with the distribution?') from e |
| 46 | else: |
| 47 | return test(verbosity=verbosity) |
| 48 | |
| 49 | from .utils import get_ncores, get_nthreads, set_nthreads, print_info, str_info |
| 50 |
nothing calls this directly
no test coverage detected
searching dependent graphs…