diff options
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 0fb4c0e..ae3fa12 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,9 @@ language: python os: - linux - - osx + # disabled since travis CI doesn't support python build on OSX and Window + # (https://docs.travis-ci.com/user/languages/python/) + # - osx python: - "3.6" @@ -15,9 +17,9 @@ addons: packages: - valgrind -before_install: - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew update ; fi - - if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install valgrind; fi +# before_install: +# - [ "$TRAVIS_OS_NAME" = "osx" ] && brew update +# - [ "$TRAVIS_OS_NAME" = "osx" ] && brew install valgrind install: - pip install -e . |
