From 1551f23de9a948ed04d9728601442e9ffb6eb2ff Mon Sep 17 00:00:00 2001 From: Eric Dill Date: Sat, 27 Sep 2014 13:04:02 -0400 Subject: [PATCH] ENH: First attempt at adding coveralls --- .travis.yml | 1 + ci/install.sh | 1 + ci/script.sh | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d13509805e0f8..c984082fee34c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -109,3 +109,4 @@ after_script: - ci/print_versions.py - ci/print_skipped.py /tmp/nosetests.xml - ci/after_script.sh + - coveralls diff --git a/ci/install.sh b/ci/install.sh index f146f3ba7ee82..408f13007c6b4 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -45,6 +45,7 @@ pip install -I -U setuptools pip install wheel==0.22 #pip install nose==1.3.3 pip install nose==1.3.4 +pip install coveralls # comment this line to disable the fetching of wheel files base_url=http://pandas.pydata.org/pandas-build/dev/wheels diff --git a/ci/script.sh b/ci/script.sh index 152a2f1ebdcf9..b7e4fa9236335 100755 --- a/ci/script.sh +++ b/ci/script.sh @@ -17,7 +17,7 @@ fi # doc build log will be shown after tests echo nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml -nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml +nosetests --exe -w /tmp -A "$NOSE_ARGS" pandas --with-xunit --xunit-file=/tmp/nosetests.xml --with-coverage --cover-package=pandas RET="$?"