File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
doc/tutorial/statistical_inference Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -9,4 +9,6 @@ if [[ "$BUILD_WITH_ICC" == "true" ]]; then
9
9
source /opt/intel/inteloneapi/setvars.sh
10
10
fi
11
11
12
- PYTEST=" pytest -n $CI_CPU_COUNT " make test-doc
12
+ if [[ " $TRAVIS_CPU_ARCH " != " arm64" ]]; then
13
+ PYTEST=" pytest -n $CI_CPU_COUNT " make test-doc
14
+ fi
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ run_tests() {
40
40
if [[ " $TRAVIS_CPU_ARCH " == " arm64" ]]; then
41
41
# use pytest-xdist for faster tests
42
42
TEST_CMD=" $TEST_CMD -n $CI_CPU_COUNT "
43
+ # remove option to test docstring
44
+ sed -i -e ' s/--doctest-modules//g' setup.cfg
43
45
else
44
46
# Tests that require large downloads over the networks are skipped in CI.
45
47
# Here we make sure, that they are still run on a regular basis.
Original file line number Diff line number Diff line change @@ -417,7 +417,7 @@ the separating line (less regularization).
417
417
418
418
.. figure :: /auto_examples/svm/images/sphx_glr_plot_svm_margin_001.png
419
419
:target: ../../auto_examples/svm/plot_svm_margin.html
420
-
420
+
421
421
**Unregularized SVM **
422
422
423
423
.. figure :: /auto_examples/svm/images/sphx_glr_plot_svm_margin_002.png
You can’t perform that action at this time.
0 commit comments