Nose test running.
This module implements test() and bench() functions for NumPy modules.
Class | NoseTester |
Nose test runner. |
Function | _numpy_tester |
Undocumented |
Function | get_package_name |
Given a path where a package is installed, determine its name. |
Function | import_nose |
Import nose only when needed. |
Function | run_module_suite |
Run a test module. |
Given a path where a package is installed, determine its name.
>>> np.testing.nosetester.get_package_name('nonsense') 'numpy'
Run a test module.
Equivalent to calling $ nosetests <argv> <file_to_run> from the command line
Arguments to be passed to the nose test runner. argv[0] is ignored. All command line arguments accepted by nosetests will work. If it is the default value None, sys.argv is used.
Adding the following:
if __name__ == "__main__" : run_module_suite(argv=sys.argv)
at the end of a test module will run the tests when that module is called in the python interpreter.
Alternatively, calling:
>>> run_module_suite(file_to_run="numpy/tests/test_matlib.py") # doctest: +SKIP
from an interpreter will run all the test routine in 'test_matlib.py'.