8000
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 159da2a commit fcb1403Copy full SHA for fcb1403
build_tools/travis/test_script.sh
@@ -24,7 +24,7 @@ run_tests() {
24
if [[ "$USE_PYTEST" == "true" ]]; then
25
TEST_CMD="pytest --showlocals --pyargs"
26
else
27
- TEST_CMD="nosetests --with-coverage" # --with-timer --timer-top-n 20"
+ TEST_CMD="nosetests --with-timer --timer-top-n 20"
28
fi
29
# Get into a temp directory to run test from the installed scikit learn and
30
# check if we do not leave artifacts
@@ -43,9 +43,12 @@ run_tests() {
43
44
$TEST_CMD sklearn
45
46
- # Test doc
47
- cd $OLDPWD
48
- make test-doc
+ # Test doc (only with nose until we switch completely to pytest)
+ if [[ "$USE_PYTEST" != "true" ]]; then
+ # Going back to git checkout folder needed for make test-doc
49
+ cd $OLDPWD
50
+ make test-doc
51
+ fi
52
}
53
54
if [[ "$RUN_FLAKE8" == "true" ]]; then
0 commit comments