From 4cb72c1f112062d396ff3e9f4f0043daf78b56ef Mon Sep 17 00:00:00 2001 From: George Oikonomou Date: Wed, 7 Aug 2013 14:50:48 +0100 Subject: [PATCH] Don't try to tail *.testlog after non-sim tests Fixes #247 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4786a513c..e6996d6c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,7 +34,7 @@ script: after_script: ## Print cooja test logs - - "tail regression-tests/??-$BUILD_TYPE/*.testlog" + - "[ ${BUILD_CATEGORY:-sim} = sim ] && tail regression-tests/??-$BUILD_TYPE/*.testlog" ## Print a basic summary - "echo 'Summary:'; cat regression-tests/??-$BUILD_TYPE/summary" - "FAILS=`grep -c -i 'fail' regression-tests/??-$BUILD_TYPE/summary`"