Changeset 23facac for .travis.yml


Ignore:
Timestamp:
Sep 30, 2017, 8:22:13 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
fee0094
Parents:
9fabad5 (diff), 5b679ba (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into PR/simplify_emscripten

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    r9fabad5 r23facac  
    8282    - libfftw3-dev
    8383    - sox
     84    - lcov
    8485
    8586before_install:
     
    9091       brew install ffmpeg
    9192       brew install libsndfile
     93       brew install lcov
    9294       export PATH="$HOME/Library/Python/2.7/bin/:$PATH"
    9395     fi;
     
    98100  - which pip
    99101  - pip --version
     102  - pip install python-coveralls
     103  - gem install coveralls-lcov
    100104
    101105script:
     
    104108    if [[ -z "$AUBIO_NOTESTS" ]]; then
    105109      make test_lib_python_clean
    106       make test_python_only_clean
     110      make coverage
    107111    else
    108112      make test_lib_only_clean
    109113    fi;
     114
     115after_success:
     116  - |
     117    if [[ -z "$AUBIO_NOTESTS" ]]; then
     118      # upload lcov coverage to coveralls.io
     119      coveralls-lcov build/coverage.info
     120      # upload python coverage
     121      #coveralls
     122      # upload to codecov
     123      bash <(curl -s https://codecov.io/bash)
     124    fi
    110125
    111126notifications:
Note: See TracChangeset for help on using the changeset viewer.