Skip to content

Commit

Permalink
Merge pull request #402 from yarikoptic/enh-codecov
Browse files Browse the repository at this point in the history
ENH: enable codecov for travis setup
  • Loading branch information
yarikoptic committed May 26, 2016
2 parents ccb1c8d + 8f5f19d commit f8d3149
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ before_install:
- wheelhouse_pip_install $DEPENDS
- if [ "${COVERAGE}" == "1" ]; then
pip install coverage;
pip install coveralls;
pip install coveralls codecov;
fi
# command to install dependencies
# e.g. pip install -r requirements.txt # --use-mirrors
Expand Down Expand Up @@ -92,4 +92,4 @@ script:
fi
- $PYTHON ../tools/nipnost --verbosity=3 $COVER_ARGS nipy
after_success:
- if [ "${COVERAGE}" == "1" ]; then coveralls; fi
- if [ "${COVERAGE}" == "1" ]; then coveralls; codecov; fi

0 comments on commit f8d3149

Please sign in to comment.