Skip to content

Commit

Permalink
Trying out the paths
Browse files Browse the repository at this point in the history
  • Loading branch information
hyades committed Jan 5, 2015
1 parent 5a49d88 commit f595850
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions .travis-after.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,22 @@
# This script runs after everything has finished. It should be used to upload
# any build assets, logs and coverage information.

case $TEST in
server )
COVERALL_ARGS="-n -r tools"
;;
esac

coveralls $COVERALL_ARGS || {
printf "Coveralls failed!\n"
exit -1
}

if [[ $TYPE != "style" ]]; then

case $TEST in
python-api )
cd python-api
;;
server )
ls -ltr tools/
COVERALL_ARGS="-n -r tools"
;;
esac

coveralls $COVERALL_ARGS || {
printf "Coveralls failed!\n"
exit -1
}

fi

0 comments on commit f595850

Please sign in to comment.