diff --git a/.travis.yml b/.travis.yml index 1cf6dc3..5ebb129 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,13 +19,17 @@ addons: - python3-setuptools - python3-wheel - ninja-build + - lcov before_install: - sudo pip3 install --system meson before_script: - - meson build + - meson -Db_coverage=true build script: - cd build - - meson test \ No newline at end of file + - meson test + +after_success: + - bash <(curl -s https://codecov.io/bash) \ No newline at end of file