Skip to content

Commit

Permalink
Merge 352c20b into 73b08d2
Browse files Browse the repository at this point in the history
  • Loading branch information
warner committed Jun 21, 2016
2 parents 73b08d2 + 352c20b commit c6d7852
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .travis.yml
@@ -1,5 +1,7 @@
sudo: false
language: python
sudo: true
os:
- "linux"
- "osx"
cache: pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
Expand All @@ -13,7 +15,12 @@ before_install:
- git fetch --depth=1000
- python misc/build_helpers/show-tool-versions.py
install:
- pip install coveralls tox
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then echo installing on osx...; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update && brew install python; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then export PATH=/usr/local/bin:$PATH; fi
- echo $PATH; which python
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo pip install coveralls tox; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then pip install coveralls tox; fi
script:
- tox -e coverage
after_success:
Expand Down

0 comments on commit c6d7852

Please sign in to comment.