Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Try another fix for BSD problem. This one uses numpy functions, which is | Charles Harris | 2009-08-03 | 1 | -4/+3 | |
| | | | | probably not the best... | |||||
* | Test fix for BSD buildbot error. | Charles Harris | 2009-08-03 | 1 | -1/+4 | |
| | ||||||
* | Fix small bug in assert_almost_equal. | Charles Harris | 2009-08-03 | 1 | -2/+2 | |
| | | | | | | | The comparison of complex numbers is still not quite right because errors can propagate between the real and imaginary parts. They can't be checked separately in general. However, this fix gets rid of the test errors currently showing. | |||||
* | BUG: handle inf/nan correctly in assert_array_almost_equal. | David Cournapeau | 2009-07-28 | 1 | -1/+31 | |
| | ||||||
* | BUG: fix nan/inf handling for complex dtypes. | David Cournapeau | 2009-07-28 | 1 | -0/+31 | |
| | ||||||
* | Handle complex special values and negative zero. | David Cournapeau | 2009-07-27 | 1 | -4/+43 | |
| | | | | | Complex with nan/inf are correctly handled in assert_equal, as well as negative zero. | |||||
* | Handle nan and inf in assert_equal. | David Cournapeau | 2009-07-27 | 1 | -1/+24 | |
| | ||||||
* | Fix header for assert_array_almost_equal. | David Cournapeau | 2009-07-27 | 1 | -2/+2 | |
| | ||||||
* | BUG: handle nan/inf in assert_approx_equal. | David Cournapeau | 2009-07-27 | 1 | -0/+14 | |
| | ||||||
* | BUG: assert_array_compare did not raise an exception when the nan indexes of ↵ | David Cournapeau | 2009-07-27 | 1 | -0/+1 | |
| | | | | both arguments did not match. | |||||
* | Handle nan and inf in assert_almost_equal. | David Cournapeau | 2009-07-27 | 1 | -0/+49 | |
| | ||||||
* | Make testing.rundocs to raise error on failures; otherwise Nose hides them | Pauli Virtanen | 2009-04-24 | 1 | -9/+18 | |
| | | | | Also drop Python < 2.4 compatibility. | |||||
* | Fix spelling. | Charles Harris | 2009-04-09 | 1 | -1/+1 | |
| | ||||||
* | Merge from the doc wiki | Pauli Virtanen | 2009-03-24 | 1 | -9/+300 | |
| | ||||||
* | Give assert_ a default message of ''. | Charles Harris | 2009-03-14 | 1 | -1/+1 | |
| | ||||||
* | Fixed #745: make assert_array_almost_equal work with object arrays | Pauli Virtanen | 2009-03-09 | 1 | -2/+6 | |
| | ||||||
* | Add assert_ as a release safe version of assert for running tests. | Charles Harris | 2009-03-09 | 1 | -1/+8 | |
| | ||||||
* | Allow subclasses of arrays in testing. | Stefan van der Walt | 2009-02-22 | 1 | -3/+3 | |
| | ||||||
* | Put measure in numpy.testing namespace. | David Cournapeau | 2008-10-28 | 1 | -1/+1 | |
| | ||||||
* | Removed unused imports. | Alan McIntyre | 2008-09-09 | 1 | -1/+0 | |
| | ||||||
* | Make testing functions work when python is called with the -OO flag. | Charles Harris | 2008-08-29 | 1 | -15/+27 | |
| | ||||||
* | ran reindent | Jarrod Millman | 2008-08-08 | 1 | -1/+1 | |
| | ||||||
* | Merge from documentation editor. | Stefan van der Walt | 2008-08-05 | 1 | -2/+34 | |
| | ||||||
* | Delay import from inspect to reduce startup time. | Alan McIntyre | 2008-07-30 | 1 | -1/+4 | |
| | ||||||
* | Delay import of difflib to reduce startup time. | Alan McIntyre | 2008-07-30 | 1 | -1/+3 | |
| | ||||||
* | Added numpy.testing.verbose, to allow tests to vary output accordingly. | Alan McIntyre | 2008-07-21 | 1 | -2/+18 | |
| | | | | | | | Added numpy.testing.print_assert_equal, to allow removing the multiple identical implementations of this function in SciPy tests. Display version info for NumPy, Python, and nose (and SciPy when running SciPy tests), in a manner similar to the original test framework. | |||||
* | Added the measure function to utils.py in support of SciPy tests. | Alan McIntyre | 2008-07-16 | 1 | -0/+19 | |
| | ||||||
* | Added isfunction and decorate_methods in support of SciPy switching to | Alan McIntyre | 2008-07-15 | 1 | -1/+37 | |
| | | | | use numpy.testing. | |||||
* | Replaced utils.raises implementation with the nose function. | Alan McIntyre | 2008-07-13 | 1 | -30/+9 | |
| | | | | | Added utils.assert_raises (uses the function from nose). Wrapped text for test() deprecation warning. | |||||
* | Update README.txt to indicate nose version dependency, and port SciPy r4424 ↵ | Alan McIntyre | 2008-06-17 | 1 | -1/+32 | |
| | | | | | | | | 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 McIntyre | 2008-06-17 | 1 | -30/+23 | |
| | | | | modules. | |||||
* | added verbose argument to assert_array_equal in assert_equal. Fixes ticket #810. | dhuard | 2008-06-05 | 1 | -1/+1 | |
| | ||||||
* | ran reindent in preparation for the 1.1 release | Jarrod Millman | 2008-04-20 | 1 | -1/+1 | |
| | ||||||
* | Correct dependency on missing code. | Robert Kern | 2008-04-17 | 1 | -25/+22 | |
| | ||||||
* | Fix test for assert* with nan values + string formatting issue when handling ↵ | David Cournapeau | 2008-04-08 | 1 | -2/+2 | |
| | | | | nan. | |||||
* | Handle nan in assert_array* funcs correctly. All numpy tests pass | David Cournapeau | 2008-04-08 | 1 | -2/+25 | |
| | ||||||
* | Revert comparison function; nan handling broken. | David Cournapeau | 2008-04-07 | 1 | -19/+2 | |
| | ||||||
* | Fix broken detection of nan in comparison function. | David Cournapeau | 2008-04-07 | 1 | -2/+2 | |
| | ||||||
* | Handling nan values for assert_ functions. | David Cournapeau | 2008-04-07 | 1 | -2/+19 | |
| | ||||||
* | Removed dependency on nose.tools. Ripped nose.tools.raise and placed it in ↵ | Travis Oliphant | 2008-01-02 | 1 | -1/+35 | |
| | | | | numpy.testing | |||||
* | use 'in' keyword to test dictionary membership | Jarrod Millman | 2007-11-28 | 1 | -1/+1 | |
| | ||||||
* | Added assert_string_equal function to numpy.testing. | Pearu Peterson | 2007-08-31 | 1 | -1/+35 | |
| | ||||||
* | Typo fix: expose memusage for nt OS. | Pearu Peterson | 2007-06-08 | 1 | -6/+6 | |
| | ||||||
* | assert_approx_equal used significant digit more than requested. | Robert Kern | 2007-05-04 | 1 | -1/+1 | |
| | ||||||
* | make printed errors from approx_array_* better | cookedm | 2006-07-14 | 1 | -1/+3 | |
| | ||||||
* | `` -> repr in numpy.testing | cookedm | 2006-07-14 | 1 | -2/+2 | |
| | ||||||
* | Fix assert_array_compare to handle boolean return from equality testing ↵ | Travis Oliphant | 2006-07-06 | 1 | -4/+10 | |
| | | | | (which can happen) | |||||
* | Make 'assert_equal' handle tuples (not only lists). Closes #163. | Stefan van der Walt | 2006-06-30 | 1 | -1/+1 | |
| | ||||||
* | Rework numpy.testing.utils. | cookedm | 2006-06-14 | 1 | -86/+52 | |
| | | | | This tightens up equality tests a bit; some tests in numpy an scipy fail. | |||||
* | Apply patch #137 | Travis Oliphant | 2006-06-12 | 1 | -6/+6 | |
| |