| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
Found via `codespell -q 3 -I ../numpy-whitelist.txt`
|
|
|
|
|
|
|
|
| |
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.
|
|\
| |
| | |
BUG: Fix bug in asserting near equality of float16 arrays.
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
|
|
| |
* 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
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
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.
|