diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-06-22 07:57:47 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-06-22 07:57:47 -0600 |
commit | f768f3e47cb248951c95f8769217ec9679b8cc3d (patch) | |
tree | 67c993f825e31d66ab5f3ce60b14cc07f6506636 /README.md | |
parent | cd731d5cdbac143b9de5e188b74e03514d3c73b8 (diff) | |
download | numpy-f768f3e47cb248951c95f8769217ec9679b8cc3d.tar.gz |
DOC: Update testing section of README.
[ci skip]
Diffstat (limited to 'README.md')
-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()' |