From 5cda87bbc14fb77362b8a6b9acf579e822edf52f Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 24 Nov 2019 14:53:12 +0100 Subject: [PATCH] Also export coverage results to codecov Will have to decide which to keep, but codecov at least supports partial line coverage (while missing nicer overall dashboard :/). --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 5184af8..19009c6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -45,6 +45,8 @@ env: after_success: - lcov --capture --no-external --directory . --output-file coverage.info - coveralls-lcov coverage.info + - pip install codecov + - codecov notifications: webhooks: https://coveralls.io/webhook -- 2.39.2