summaryrefslogtreecommitdiff
path: root/numpy/testing/pkgtester.py
Commit message (Collapse)AuthorAgeFilesLines
* Restore old test framework classes.Alan McIntyre2008-06-211-14/+0
| | | | | | | | | | | Added numpy.testing.run_module_suite to simplify "if __name__ == '__main__'" boilerplate code in test modules. Removed numpy/testing/pkgtester.py since it just consisted of an import statement after porting SciPy r4424. Allow numpy.*.test() to accept the old keyword arguments (but issue a deprecation warning when old arguments are seen). numpy.*.test() returns a test result object as before. Fixed typo in distutils doc.
* Update README.txt to indicate nose version dependency, and port SciPy r4424 ↵Alan McIntyre2008-06-171-14/+1
| | | | | | | | to NumPy (prevent import of nose until actual execution of tests). Restored "raises" function to numpy/testing/utils.py until it can be replaced with the function of the same name from nose.tools after the lazy import.
* Switched to use nose to run tests. Added test and bench functions to all ↵Alan McIntyre2008-06-171-0/+27
modules.