Skip to content
This repository has been archived by the owner on Mar 22, 2023. It is now read-only.

Commit

Permalink
Use python3 in Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
mfherbst committed Oct 7, 2017
1 parent 66c25a5 commit 67ab1b9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,15 @@ env:
- TESTS=1 TESTS_REGEX="krims_tests_"

before_install:
- travis_retry pip install --user cpp-coveralls
- travis_retry pip3 install --user cpp-coveralls

addons:
apt:
sources: &def_sources
- ubuntu-toolchain-r-test # libstdc++-4.9-dev (gcc 4.8's libstdc++ is buggy)
- llvm-toolchain-trusty-4.0 # clang-4.0
packages: &def_packages
- python3-pip
- ninja-build

matrix:
Expand Down Expand Up @@ -131,7 +132,7 @@ script:

after_success:
- cd ${TRAVIS_BUILD_DIR}
- if [ "${GCOV}" ]; then coveralls --gcov "$GCOV" --gcov-options '\-lp'
- if [ "${GCOV}" ]; then python3 coveralls --gcov "$GCOV" --gcov-options '\-lp'
--root ${PWD} --build-root ${PWD}/build
--include src
;fi

0 comments on commit 67ab1b9

Please sign in to comment.