File: success.sh

package info (click to toggle)
umap-learn 0.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,284 kB
  • sloc: python: 9,863; sh: 87; makefile: 20
file content (13 lines) | stat: -rw-r--r-- 503 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
set -e

if [[ "$COVERAGE" == "true" ]]; then
#    # Need to run coveralls from a git checkout, so we copy .coverage
#    # from TEST_DIR where nosetests has been run
#    cp $TEST_DIR/.coverage $TRAVIS_BUILD_DIR
#    cd $TRAVIS_BUILD_DIR
    # Ignore coveralls failures as the coveralls server is not
    # very reliable but we don't want travis to report a failure
    # in the github UI just because the coverage report failed to
    # be published.
    coveralls || echo "Coveralls upload failed"
fi