From 26abba23e1d1369e979f7fda8bed2ea2494da79d Mon Sep 17 00:00:00 2001 From: Jacob Wenger Date: Sun, 7 Dec 2014 16:37:59 -0800 Subject: [PATCH] Only run SauceLabs on git tags --- tests/travis.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/travis.sh b/tests/travis.sh index 73c1559c..6692a627 100644 --- a/tests/travis.sh +++ b/tests/travis.sh @@ -1,6 +1,5 @@ grunt build grunt test:unit -#if [ $SAUCE_ACCESS_KEY ]; then - #grunt sauce:unit - #grunt sauce:e2e -#fi +if [ $TRAVIS_TAG ]; then + grunt sauce:unit; +fi