Commit 71aa92dbde8b351dea7691d7ffaa74088aa2e997

Martin Mitas 2017-08-13T11:03:47

.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