From 58078971f6c5c6039f535467e68c0c8ea4f6c19b Mon Sep 17 00:00:00 2001 From: Tom Hromatka Date: Wed, 15 Jul 2020 12:06:15 -0600 Subject: [PATCH] travis: Show the gunit log on failure When a failure occurs in TravisCI, we currently show only the test-suite.log from the functional tests. This commit also displays the googletest test-suite.log. Signed-off-by: Tom Hromatka --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 72e202b1..495a4a41 100644 --- a/.travis.yml +++ b/.travis.yml @@ -57,6 +57,7 @@ script: after_failure: - cat tests/ftests/test-suite.log + - cat tests/gunit/test-suite.log after_success: - coveralls --exclude tests --exclude googletest --exclude samples --gcov-options '\-lp' -- 2.47.2