From b7936062b08a743e6dec917ac5e727e7b2cd3bb8 Mon Sep 17 00:00:00 2001 From: Manuel Nickschas Date: Fri, 19 Oct 2018 00:20:30 +0200 Subject: [PATCH 1/1] travis: Use ctest to execute unit tests ctest gives us more options than make/ninja, for example verbose output. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 553eb16c..4e2efee0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -44,7 +44,7 @@ script: -DBUILD_TESTING=ON \ && ninja install \ && ccache -s \ - && ninja test \ + && ctest -VV \ " # Define a separate job for OSX @@ -72,7 +72,7 @@ jobs: cmake -GNinja .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON -DDEPLOY=$DEPLOY ninja install - ccache -s - - ninja test + - ctest -VV deploy: provider: releases api_key: "${GH_TOKEN}" -- 2.20.1