Skip to content

Commit 647e4a7

Browse files
committed
Merge branch 'travis-codecov-fix-integration'
2 parents b39878e + 4c3fd2d commit 647e4a7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.travis.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,11 @@ install:
7373
script: _travis/test
7474
after_success:
7575
- pip install --user codecov
76-
- PATH="$HOME/.local/bin:$PATH" codecov
76+
- >
77+
if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then
78+
~/Library/Python/*/bin/codecov ;
79+
elif [[ "$CXX" == "clang++" ]] ; then
80+
~/.local/bin/codecov --gcov-exec llvm-cov ;
81+
else
82+
~/.local/bin/codecov ;
83+
fi

0 commit comments

Comments
 (0)