Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | BUG: fix 2.5 >= try/except/finally. | David Cournapeau | 2009-11-23 | 1 | -5/+6 |
| | |||||
* | ENH: add an assert_warns testing utility. | David Cournapeau | 2009-11-23 | 2 | -1/+59 |
| | |||||
* | REF: move warning context manager into utils. | David Cournapeau | 2009-11-23 | 2 | -84/+88 |
| | |||||
* | BUG: use %g format in assert_array_*_nulp (fix #1297, thanks to Neil Muller) | Pauli Virtanen | 2009-11-13 | 1 | -2/+2 |
| | |||||
* | ENH: remove any mention of original python spacing, use ufunc everywhere. | David Cournapeau | 2009-11-10 | 1 | -33/+2 |
| | |||||
* | REF: move spacing tests to umath as spacing is now a ufunc. | David Cournapeau | 2009-11-10 | 1 | -39/+0 |
| | |||||
* | BUG: wrong exception raised in spacing for incompatible dtype. | David Cournapeau | 2009-10-30 | 1 | -2/+0 |
| | |||||
* | STY: remove whitespace. | David Cournapeau | 2009-10-30 | 1 | -3/+3 |
| | |||||
* | ENH: add assert_array_max_ulp comparison function. | David Cournapeau | 2009-10-30 | 2 | -1/+65 |
| | | | | | This new comparison raises an error if the number of representable numbers between two arrays exceeds a tolerance. | ||||
* | ENH: add robust comparison function for floating numbers. | David Cournapeau | 2009-10-30 | 2 | -1/+107 |
| | | | | | | assert_array_almost_equal_nulp use spacing so that a single tolerance number can be used independently on the amplitude of the floating point number. | ||||
* | ENH: add numpy implementation of F90 spacing function. | David Cournapeau | 2009-10-30 | 2 | -0/+71 |
| | |||||
* | ENH: add a function to compute the signed-magnitude interpretation of the ↵ | David Cournapeau | 2009-10-30 | 1 | -0/+24 |
| | | | | binary repr of a float. | ||||
* | Don't include assert_valid_refcount in numpy.testing.* | Pauli Virtanen | 2009-10-10 | 1 | -2/+6 |
| | | | | It's a private function used only in two internal regression tests. | ||||
* | Docstring update: testing | Pauli Virtanen | 2009-10-02 | 3 | -114/+422 |
| | |||||
* | BUG: fix list/tuple handling in test_almost_equal. | David Cournapeau | 2009-09-21 | 1 | -1/+2 |
| | | | | We now forward tuple/list instances to test_array_almost_equal. | ||||
* | All non core regressions tests moved to their respective modules. | David Cournapeau | 2009-09-16 | 1 | -1/+16 |
| | |||||
* | Import issubdtype from numpy.core directly so that testing.utils does not ↵ | David Cournapeau | 2009-09-16 | 1 | -3/+4 |
| | | | | depend on numpy.lib. | ||||
* | Fix #1168: fix functionality broken in r7132, and make get_package_path more ↵ | Pauli Virtanen | 2009-08-29 | 1 | -3/+12 |
| | | | | robust | ||||
* | Hmm, somehow a reference to math.fabs slipped by and didn't show here. Try | Charles Harris | 2009-08-03 | 1 | -1/+1 |
| | | | | again. | ||||
* | 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 | 2 | -1/+32 |
| | |||||
* | BUG: fix nan/inf handling for complex dtypes. | David Cournapeau | 2009-07-28 | 2 | -0/+46 |
| | |||||
* | Handle complex special values and negative zero. | David Cournapeau | 2009-07-27 | 2 | -4/+59 |
| | | | | | 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 | 2 | -2/+43 |
| | |||||
* | 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 | 2 | -0/+70 |
| | |||||
* | BUG: assert_array_compare did not raise an exception when the nan indexes of ↵ | David Cournapeau | 2009-07-27 | 2 | -0/+13 |
| | | | | both arguments did not match. | ||||
* | Handle nan and inf in assert_almost_equal. | David Cournapeau | 2009-07-27 | 2 | -1/+69 |
| | |||||
* | Fix 2.5-isms for deprecated decorator. | David Cournapeau | 2009-07-21 | 1 | -2/+8 |
| | |||||
* | Add versionadded 1.4.0 for deprecated decorator. | David Cournapeau | 2009-07-21 | 1 | -0/+5 |
| | |||||
* | Add a deprecated decorator to avoid cluttering test run output while ↵ | David Cournapeau | 2009-07-21 | 1 | -0/+102 |
| | | | | checking for raised deprecation. | ||||
* | Fixed #1168: more robust NoseTester package name detection (patch by Gaël ↵ | Pauli Virtanen | 2009-07-12 | 1 | -6/+11 |
| | | | | Varoquaux) | ||||
* | 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 |
| | |||||
* | Fix another docstring formatting | Pauli Virtanen | 2009-03-29 | 1 | -1/+1 |
| | |||||
* | Fix docstring formatting (blocks doc build) | Pauli Virtanen | 2009-03-29 | 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 | 2 | -2/+11 |
| | |||||
* | 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 |
| | |||||
* | Issue #957: | Alan McIntyre | 2009-02-05 | 2 | -16/+221 |
| | | | | | | | - Fix problems with test decorators when used on test generators. - The skip/fail arguments for skipif and knownfailureif can now be either a bool or a callable that returns a bool. - Added tests for the test decorators. | ||||
* | Remove the following deprecated items from numpy.testing: | Alan McIntyre | 2008-12-31 | 5 | -1026/+67 |
| | | | | | | | | | | | | | | | - ParametricTestCase - The following arguments from numpy.testing.Tester.test(): level, verbosity, all, sys_argv, testcase_pattern - Path manipulation functions: set_package_path, set_local_path, restore_path - NumpyTestCase, NumpyTest Also separated testing parameter setup from NoseTester.test into NoseTester.prepare_test_args for use in a utility script for valgrind testing (see NumPy ticket #784). | ||||
* | ran reindent | Jarrod Millman | 2008-12-31 | 2 | -2/+2 |
| | |||||
* | Put measure in numpy.testing namespace. | David Cournapeau | 2008-10-28 | 1 | -1/+1 |
| | |||||
* | Removed unused imports. | Alan McIntyre | 2008-09-13 | 1 | -8/+7 |
| | | | | Fixed undefined reference to "getpackage" (from nose.util). | ||||
* | Removed unused imports. | Alan McIntyre | 2008-09-09 | 1 | -1/+0 |
| | |||||
* | Remove debugging code. | Alan McIntyre | 2008-09-05 | 1 | -3/+0 |
| |