File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -197,6 +197,9 @@ Using ``runtests.py`` is the recommended approach to running tests.
197
197
There are also a number of alternatives to it, for example in-place
198
198
build or installing to a virtualenv. See the FAQ below for details.
199
199
200
+ Some of the tests in Scipy are very slow and need to be separately
201
+ enabled. See the FAQ below for details.
202
+
200
203
201
204
SciPy structure
202
205
===============
@@ -391,6 +394,22 @@ course use your favourite alternative debugger; run it on the
391
394
``python `` binary with arguments ``runtests.py -g --python mytest.py ``.
392
395
393
396
397
+ *How do I enable additional tests in Scipy? *
398
+
399
+ Some of the tests in Scipy's test suite are very slow and not enabled
400
+ by default. You can run the full suite via::
401
+
402
+ $ python runtests.py -g -m full
403
+
404
+ This invokes the test suite ``import scipy; scipy.test("full") ``,
405
+ enabling also slow tests.
406
+
407
+ There is an additional level of very slow tests (several minutes),
408
+ which are disabled also in this case. They can be enabled by setting
409
+ the environment variable ``SCIPY_XSLOW=1 `` before running the test
410
+ suite.
411
+
412
+
394
413
.. _scikit-learn : http://scikit-learn.org
395
414
396
415
.. _scikits-image : http://scikits-image.org/
You can’t perform that action at this time.
0 commit comments