From 52a59561064046c0d3eef91d5048a4149e0da86a Mon Sep 17 00:00:00 2001 From: abitmore Date: Fri, 23 Mar 2018 18:17:29 -0400 Subject: [PATCH] Pipe output to get around logging ANSI color issue --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0104db2..a4d7fdb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,4 +15,5 @@ install: script: - cmake -DCMAKE_BUILD_TYPE=Debug -DBoost_USE_STATIC_LIBS=OFF . - make -j 2 - - tests/all_tests + - set -o pipefail + - tests/all_tests 2>&1 | cat