.travis.yml: Install python3 for running tests.
diff --git a/.travis.yml b/.travis.yml
index 8a56756..9ed5832 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -9,7 +9,8 @@ compiler:
addons:
apt:
packages:
- - lcov
+ - python3 # for running tests
+ - lcov # for generating code coverage report
before_script:
- mkdir build
@@ -22,7 +23,6 @@ script:
after_success:
- ../scripts/run-tests.sh
# Creating report
- - cd ${TRAVIS_BUILD_DIR}
- lcov --directory . --capture --output-file coverage.info # capture coverage info
- lcov --remove coverage.info '/usr/*' --output-file coverage.info # filter out system
- lcov --list coverage.info # debug info