summaryrefslogtreecommitdiff
path: root/numpy/testing/pytest_tools
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: Remove now unused pytest_tools.Charles Harris2018-04-065-3464/+0
|
* DOC: Fix minor typosluz.paz2018-03-301-1/+1
| | | Found via `codespell -q 3 -I ../numpy-whitelist.txt`
* TST: Import abstract classes from collections.abcFrederick Lefebvre2018-03-141-4/+9
| | | | | | | | Abstract collection classes accessed from the collections module have been deprecated since Python 3.3. They should be accessed through collections.abc. When run with Python 3.7, the deprecation warning cause multiple tests to fail.
* Merge pull request #10718 from AaronCritchley/tst-fixing-float16-eqCharles Harris2018-03-131-1/+3
|\ | | | | BUG: Fix bug in asserting near equality of float16 arrays.
| * TST: Fixing bug in assert near equality of float16 arrays (#10697)Aaron Critchley2018-03-101-1/+3
| |
* | Fix low-hanging Pypy compatibility issues (#10737)Pauli Virtanen2018-03-121-2/+5
|/ | | | | | | | | | | | | * TST: skip refcount-requiring tests if sys.refcount is missing * ENH: io: add refcheck=False to a safe .resize() call The array is allocated immediately above, and the resize always succeeds so it is not necessary to check it. Fixes Pypy compatibility. * TST: remove unused code * TST: factor skipif(not HAS_REFCOUNT) into a separate decorator
* MAINT: simplify pytest assert_raisesxoviat2017-12-291-9/+2
|
* BUG: Fix pytest implementation errorsxoviat2017-12-221-4/+17
|
* wipCharles Harris2017-12-221-322/+324
|
* wip nosetesterCharles Harris2017-12-221-12/+13
|
* ENH: Add pytest compatible run_module_suite.Charles Harris2017-12-221-46/+40
|
* ENH: Add pytest_tools directory.Charles Harris2017-12-225-0/+3451
Create numpy/testing/pytest_tools and populate it with pytest compatible versions of * decorators.py * utils.py * noseclasses.py * nosetester.py Note that noseclasses and nosetester are basically dummy modules at this point, they don't do anything, but they do import when nose is not present. Fixing the test runners is for another PR.