Skip to content

Commit

Permalink
ENH(TST): added coverage reporting to codecov (shortened travis throu…
Browse files Browse the repository at this point in the history
…gh one lineing
  • Loading branch information
yarikoptic committed Jun 7, 2016
1 parent 5b1414c commit 61709ef
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .travis.yml
Expand Up @@ -74,10 +74,7 @@ before_install:
- pip install -U pip
- retry pip install nose;
- if [ -n "$DEPENDS" ]; then wheelhouse_pip_install $DEPENDS; fi
- if [ "${COVERAGE}" == "1" ]; then
pip install coverage;
pip install coveralls;
fi
- if [ "${COVERAGE}" == "1" ]; then pip install coverage coveralls codecov; fi
- if [ "${VTK}" == "1" ]; then
sudo apt-get update;
sudo apt-get install -y $VTK_VER;
Expand Down Expand Up @@ -117,4 +114,4 @@ script:
fi
- nosetests --with-doctest --verbose $COVER_ARGS dipy
after_success:
- if [ "${COVERAGE}" == "1" ]; then coveralls; fi
- if [ "${COVERAGE}" == "1" ]; then coveralls; codecov; fi

0 comments on commit 61709ef

Please sign in to comment.