summaryrefslogtreecommitdiff
path: root/numpy/testing/nose_tools/parameterized.py
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Rearrange numpy/testing files.Charles Harris2018-03-291-490/+0
| | | | | | | | | This is to prepare for the switch to pytest. * Rename `numpy/testing/nose_tools` to `numpy/testing/_private`. * Redirect imports as needed. * Copy `_testutils.py` from scipy to `numpy/testing/_private`. * Rename `_testutils.py` to `_pytester.py` and remove unneeded bits.
* DOC/MAINT: More misc. typosluz.paz2018-02-271-2/+2
| | | Found via `codespell` and `grep`
* MAINT: Hardwire 'nose' in parameterized.py.Charles Harris2017-12-221-1/+2
|
* DOC: fix minor typosUnknown2017-12-121-1/+1
|
* ENH: Add parametrize decorator for nose.Charles Harris2017-07-051-0/+489
One of the steps in achieving pytest compatibility is to get rid of yield based nose tests. Having some basic version of parametrize offers a way to do that. Note that the version here is very restricted and does not have all the capabilities of the pytest version. Such are the drawbacks of backward compatibility.