diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-06-22 07:31:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-22 07:31:56 -0700 |
commit | fca7a15f30776ebce9e6814eb927e837f567a518 (patch) | |
tree | 1e3407cb5803bbf310668e063e84068e4f1bc843 | |
parent | a6d080015a4fba344868f3ca464cecdb7bc5f5aa (diff) | |
parent | f768f3e47cb248951c95f8769217ec9679b8cc3d (diff) | |
download | numpy-fca7a15f30776ebce9e6814eb927e837f567a518.tar.gz |
Merge pull request #11409 from charris/update-readme-pytest
DOC: Update testing section of README.
-rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -17,7 +17,12 @@ It provides: - tools for integrating C/C++ and Fortran code - useful linear algebra, Fourier transform, and random number capabilities -If ``nose`` is installed, tests can be run after installation with: +Testing: + +- NumPy versions >= 1.15 require ``pytest`` +- NumPy versions < 1.15 require ``nose`` + +Tests can then be run after installation with: python -c 'import numpy; numpy.test()' |