From 027310aa04b9b11c47f5dde1c9398fb37ab7af92 Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Sun, 14 Jun 2015 08:59:49 -0400 Subject: [PATCH] CI: run doc-tests always --- ci/script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/script.sh b/ci/script.sh index d5082234024d5..1126e8249646c 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -15,8 +15,8 @@ fi if [ "$BUILD_TEST" ]; then echo "We are not running nosetests as this is simply a build test." else - echo nosetests --exe -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml - nosetests --exe -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml + echo nosetests --exe -A "$NOSE_ARGS" pandas --doctest-tests --with-xunit --xunit-file=/tmp/nosetests.xml + nosetests --exe -A "$NOSE_ARGS" pandas --doctest-tests --with-xunit --xunit-file=/tmp/nosetests.xml fi RET="$?"