diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2017-06-15 21:17:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-15 21:17:26 -0700 |
commit | 0698810abbe7c5bb7e77f3c40784885026b7f0b8 (patch) | |
tree | 2dcd0a27d290a740a41923d3c2a4d040d0a430a1 /.travis.yml | |
parent | 0fbc043183e4723961d6caa99bf9bb77c5edfb83 (diff) | |
parent | 927d321d90a971caae629210e53858f6057903e4 (diff) |
Merge pull request #149 from zeux/test-path
Improve code coverage
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index df5569c..f35124d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,4 +14,6 @@ script: - make test cxxstd=c++11 defines=$DEFINES config=release -j2 - make test cxxstd=c++98 defines=$DEFINES config=debug -j2 -after_success: bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov +after_success: + - sed -e "s/#####\(.*\)\(\/\/ unreachable.*\)/ 1\1\2/" -i pugixml.cpp.gcov + - bash <(curl -s https://codecov.io/bash) -f pugixml.cpp.gcov |