diff options
author | Vrinda Narayan <vrinda18120@iiitd.ac.in> | 2019-03-29 19:33:28 +0530 |
---|---|---|
committer | Vrinda Narayan <vrinda18120@iiitd.ac.in> | 2019-03-29 22:50:49 +0530 |
commit | 5128c5a04c09e0f0e721a7e0515482b17650741b (patch) | |
tree | 80103cdd2073afb6a162bee3d75af3476ee43250 /doc/source/dev | |
parent | db5fcc8e5834a5f36a1043da898f76562d5475ae (diff) | |
download | numpy-5128c5a04c09e0f0e721a7e0515482b17650741b.tar.gz |
Adding an example of successful execution of numpy.test() to the Docs
Diffstat (limited to 'doc/source/dev')
-rw-r--r-- | doc/source/dev/development_environment.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/source/dev/development_environment.rst b/doc/source/dev/development_environment.rst index f9b438bfd..445ce3204 100644 --- a/doc/source/dev/development_environment.rst +++ b/doc/source/dev/development_environment.rst @@ -127,6 +127,9 @@ the interpreter, tests can be run like this:: >>> np.test('full') # Also run tests marked as slow >>> np.test('full', verbose=2) # Additionally print test name/file + An example of a successful test : + ``4686 passed, 362 skipped, 9 xfailed, 5 warnings in 213.99 seconds`` + Or a similar way from the command line:: $ python -c "import numpy as np; np.test()" |