summaryrefslogtreecommitdiff
path: root/numpy/lib/tests/test_regression.py
Commit message (Collapse)AuthorAgeFilesLines
* Don't deprecated bias keyword, just add ddof.Charles Harris2010-07-071-2/+2
|
* ENH: Add ddof keyword to cov and corrcoef. Deprecate bias keyword.Charles Harris2010-07-071-2/+2
|
* ENH: Add test of polyder return type.Charles Harris2010-05-051-0/+8
|
* BUG: move test from core to lib, mark it as deprected.David Cournapeau2010-03-311-0/+11
|
* DEP: Fix deprecation warnings in Python 3.1. The warnings come from the unittestCharles Harris2010-02-201-3/+3
| | | | | | | | | module. The fix should be good for Python >= 2.4 and used the following sed script: s/\<failUnless\>/assertTrue/g s/\<failIf\>/assertFalse/g s/\<failUnlessEqual\>/assertEqual/g s/\<failUnlessRaises\>/assertRaises/g
* removed old behavior for the histogram function.dhuard2010-02-161-10/+0
|
* BUG: fix #1387. Raise ValueError for empty input to bincount.David Cournapeau2010-02-021-0/+3
|
* Don't include assert_valid_refcount in numpy.testing.*Pauli Virtanen2009-10-101-1/+2
| | | | It's a private function used only in two internal regression tests.
* Add regression test for ticker #1243.Charles Harris2009-09-301-0/+13
|
* All non core regressions tests moved to their respective modules.David Cournapeau2009-09-161-9/+119
|
* Fixed #1140: avoid div-by-zero in iter_coords_get for size=0 arraysPauli Virtanen2009-06-191-0/+4
|
* Make test_histogramdd_too_many_bins a bit clearer.Charles Harris2009-04-101-1/+1
|
* Fix ticket #928Charles Harris2009-04-101-0/+4
|
* Fix polyint to work correctly with float, complex, and int inputs.Charles Harris2009-03-091-2/+16
| | | | Fix polydiv to work correctly with float, complex, and int inputs.
* Fix ticket #944.Charles Harris2009-03-091-3/+8
|
* ran reindentJarrod Millman2008-08-081-1/+0
|
* Remove uses of set_package_path, set_local_path, restore_path.Alan McIntyre2008-07-031-3/+0
| | | | | Clean up and (somewhat) standardize test module imports. Removed unneeded reload calls.
* Restore old test framework classes.Alan McIntyre2008-06-211-1/+2
| | | | | | | | | | | 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.
* Switched to use nose to run tests. Added test and bench functions to all ↵Alan McIntyre2008-06-171-2/+2
| | | | modules.
* ran reindent in preparation for the 1.1 releaseJarrod Millman2008-04-201-1/+1
|
* Add regression test for #628.David Cournapeau2008-03-211-0/+33