From c6d4da4ca5f366408ee8cd4037660e77d9a58594 Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Fri, 13 Nov 2015 16:31:00 -0500 Subject: [PATCH 1/2] BLD: Add back installation of coveralls on travis Was mistakenly removed, so coveralls has not been running. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 260ae83b..533874a0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ install: - conda create -n testenv --yes pip python=$TRAVIS_PYTHON_VERSION - source activate testenv - conda install --yes -c https://conda.binstar.org/Quantopian numpy=$NUMPY_VERSION pandas=$PANDAS_VERSION scipy==$SCIPY_VERSION matplotlib Cython patsy statsmodels tornado pyparsing xlrd mock pytz requests six dateutil ta-lib logbook - - pip install --upgrade pip coverage + - pip install --upgrade pip coverage coveralls - pip install -r etc/requirements.txt - pip install -r etc/requirements_dev.txt - pip install -r etc/requirements_blaze.txt From 19eb6d0f59cc76c2dbff0b0873b637e33283871f Mon Sep 17 00:00:00 2001 From: Richard Frank Date: Fri, 13 Nov 2015 17:14:29 -0500 Subject: [PATCH 2/2] DOC: Updated whatsnew --- docs/source/whatsnew/0.8.4.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/whatsnew/0.8.4.txt b/docs/source/whatsnew/0.8.4.txt index 1938ca2a..3e211876 100644 --- a/docs/source/whatsnew/0.8.4.txt +++ b/docs/source/whatsnew/0.8.4.txt @@ -55,6 +55,7 @@ Build * Makes zipline install requirements more flexible (:issue:`825`). * Use ``versioneer`` to manage the project ``__version__`` and setup.py version (:issue:`829`). +* Fixed coveralls integration on travis build (:issue:`840`). Documentation ~~~~~~~~~~~~~