Changeset 37be82e


Ignore:
Timestamp:
Apr 30, 2016, 2:58:59 PM (8 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, pitchshift, sampler, timestretch, yinfft+
Children:
8f7ed55
Parents:
0fbb694f
Message:

.travis.yml: user install on osx only, adding ~/Library/Python?/2.7/bin to PATH

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .travis.yml

    r0fbb694f r37be82e  
    6464
    6565install:
    66   - travis_retry pip install --user nose2
     66  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make travis_retry pip install nose2; fi
     67  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then   make travis_retry pip install --user nose2; fi
    6768
    6869script:
     
    7172  - make build_python
    7273  - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make test_python; fi
    73   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then make test_python_osx; fi
     74  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH="$HOME/Library/Python/2.7/bin/:$PATH" make test_python_osx; fi
    7475  - make clean_python
    7576  - make clean
Note: See TracChangeset for help on using the changeset viewer.