From a932df150d331fadd5ea7b06bb9899021132f288 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 24 Nov 2019 15:36:29 +0100 Subject: [PATCH] Export coverage results to codecov as well And also move the env var to just the coveralls invocation. --- .travis.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index f035d29..303cc41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,14 +28,11 @@ addons: - libacl1-dev - lcov -# coverage settings from here: - -env: - - COVERALLS_PARALLEL=true - after_success: - lcov --capture --no-external --directory . --output-file coverage.info - - coveralls-lcov coverage.info + - COVERALLS_PARALLEL=true coveralls-lcov coverage.info + - pip install codecov + - codecov notifications: webhooks: https://coveralls.io/webhook -- 2.39.2