From 85a9dd16b6a76bf441ace24a2cc3f14bf5b87011 Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Mon, 31 Aug 2015 11:23:12 +0200 Subject: [PATCH] Sets Quick unit test mode as default. --- scripts/pre-release-tests.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/pre-release-tests.sh b/scripts/pre-release-tests.sh index 17b1e5df..42447f47 100755 --- a/scripts/pre-release-tests.sh +++ b/scripts/pre-release-tests.sh @@ -1,14 +1,16 @@ IS_LOCAL=0 -IS_QUICK=0 +IS_QUICK=1 if [ "$1" == "l" ]; then echo "Local test" IS_LOCAL=1 fi -if [ "$1" == "q" ]; then +if [ "$1" == "f" ]; then + echo "Full" + IS_QUICK=0 +else echo "Quick" - IS_QUICK=1 fi ISLOCAL="${IS_LOCAL}" . scripts/common.sh