Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Fix Travis CI exit status
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisCummins committed Nov 29, 2016
1 parent e9bb860 commit 7ec6234
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ install:
- pip install --only-binary=scipy 'scipy>=0.16.1'
- pip install --only-binary=pandas 'pandas>=0.19.0'
- pip install 'Cython==0.23.4'
- cd "$TRAVIS_BUILD_DIR/contrib/python" && pip install -r requirements.txt; cd -
- cd "$TRAVIS_BUILD_DIR/contrib/python" && python ./setup.py install; cd -
- cd "$TRAVIS_BUILD_DIR/contrib/python" && pip install -r requirements.txt && cd -
- cd "$TRAVIS_BUILD_DIR/contrib/python" && python ./setup.py install && cd -

branches:
except:
Expand All @@ -37,8 +37,8 @@ before_script:

script:
- 'if [ "$TRAVIS_REPO_SLUG" = "codeplaysoftware/visioncpp" ] && [ "$TRAVIS_BRANCH" = "master" ]; then bash ./scripts/travis_build_docs.sh; fi'
- cd "$TRAVIS_BUILD_DIR/contrib/python" && coverage run --source=visioncpp setup.py test; cd -
- cd "$TRAVIS_BUILD_DIR/contrib/python" && coverage run --source=visioncpp setup.py test && cd -

after_success:
- 'if [ "$TRAVIS_REPO_SLUG" = "codeplaysoftware/visioncpp" ] && [ "$TRAVIS_BRANCH" = "master" ]; then bash ./scripts/travis_deploy_docs.sh; fi'
- cd "$TRAVIS_BUILD_DIR/contrib/python" && coveralls && cd ../../; cd -
- cd "$TRAVIS_BUILD_DIR/contrib/python" && coveralls && cd ../../ && cd -

0 comments on commit 7ec6234

Please sign in to comment.