We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bdf857a commit f59c503Copy full SHA for f59c503
build_tools/azure/test_script.sh
@@ -60,6 +60,15 @@ if [[ -n "$SELECTED_TESTS" ]]; then
60
export SKLEARN_TESTS_GLOBAL_RANDOM_SEED="all"
61
fi
62
63
+TEST_CMD="$TEST_CMD --pyargs sklearn"
64
+if [[ "$DISTRIB" == "conda-pypy3" ]]; then
65
+ # Run only common tests for PyPy. Running the full test suite uses too
66
+ # much memory and causes the test to time out sometimes. See
67
+ # https://github.com/scikit-learn/scikit-learn/issues/27662 for more
68
+ # details.
69
+ TEST_CMD="$TEST_CMD.tests.test_common"
70
+fi
71
+
72
set -x
-eval "$TEST_CMD --pyargs sklearn"
73
+eval "$TEST_CMD"
74
set +x
0 commit comments