summaryrefslogtreecommitdiff
path: root/numpy/testing/numpytest.py
Commit message (Collapse)AuthorAgeFilesLines
* `` -> repr in numpy.testingcookedm2006-07-141-3/+5
|
* Scan for abs(level) tests.Stefan van der Walt2006-07-071-1/+1
|
* from Neilen Marais: make numpy.testing compatible with the nosetest package ↵cookedm2006-06-281-1/+1
| | | | with a trivial patch
* Fixed doctest usage 2.4-ism.Pearu Peterson2006-05-031-4/+7
|
* Impl. NumpyTest.testall method that looks for test methods more agrressively ↵Pearu Peterson2006-05-011-1/+124
| | | | than NumpyTest.test
* Changed rundocs to closely follow procedure outlined in the docs for ↵Tim Hochberg2006-04-301-1/+6
| | | | imp.load_module. This fixed a bizzare error where tests would run fine the first time through, but would fail the second time through when loading from a pyc file.
* Added NumpyTestCase.rundocs method to support running doc-tests via unittest ↵Pearu Peterson2006-04-261-0/+15
| | | | machinery - needed for running tests via testoob.
* Added importall function that recursively imports modules. Convinient for ↵Pearu Peterson2006-04-261-0/+25
| | | | detecting any import problems.
* Applied Bryce patch to support TestCase proxy classes.Pearu Peterson2006-04-041-2/+5
|
* Run reindent.py (script distributed with Python) over the source to remove ↵cookedm2006-03-101-3/+3
| | | | extraneous whitespace
* Improved the meaning of test level argument: with negative level return a ↵Pearu Peterson2006-02-241-14/+12
| | | | list of abs(level) unit tests, with a positive value, also run them.
* Documented NumpyTest.test level and verbosity arguments. Added special ↵Pearu Peterson2006-02-241-4/+23
| | | | behaviors.
* Fixed a bug in importing zzz/tests/test_zzz.py when zzz/zzz.py exists. Added ↵Pearu Peterson2006-02-231-24/+54
| | | | check_testcase_name and testfile_patterns to NumpyTest so that different test suite conventions can be used.
* Impl. check_testcase_name, get_testfile methods to support different ↵Pearu Peterson2006-02-211-28/+23
| | | | unittest suite naming schemes. Removed Python 2.1 support code.
* Fixing mingw32 building: fixes undefined referece __EH_FRAME_BEGIN__ linker ↵Pearu Peterson2006-02-181-0/+2
| | | | failure.
* Impl. rename() method for NumpyTest class that allows redefining mapping ↵Pearu Peterson2006-02-091-3/+20
| | | | between module name and test_<module name>.py file name. Fixed bug with output_exception argument.
* Added warn,info methods to NumpyTestCase.Pearu Peterson2006-01-311-0/+7
|
* Fixed a misplaced test messages by flushing.Pearu Peterson2006-01-311-0/+1
|
* Renamed ScipyTest to NumpyTest, flushing printouts, fixed a bug of including ↵Pearu Peterson2006-01-311-24/+46
| | | | too many tests in situations where we have xxx/__init__.py, xxx/xxx.py, xxx/tests/test_xxx.py.
* Fixed dotblas for zero-size arrays.Travis Oliphant2006-01-171-1/+1
|
* More changesTravis Oliphant2006-01-041-0/+385