This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk.git
The following commit(s) were added to refs/heads/master by this push:
new 4a5a395 Remove Unit Test redundancy (#4206)
4a5a395 is described below
commit 4a5a395f7d12ff87042ede787e30269ad47f9d9a
Author: Jonathan Springer <jonpspri@gmail.com>
AuthorDate: Mon Jan 7 13:29:42 2019 -0500
Remove Unit Test redundancy (#4206)
---
tools/travis/runTests.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/travis/runTests.sh b/tools/travis/runTests.sh
index 82b9db6..5aafe47 100755
--- a/tools/travis/runTests.sh
+++ b/tools/travis/runTests.sh
@@ -21,14 +21,14 @@ set -e
# Build script for Travis-CI.
SECONDS=0
-SCRIPTDIR=$(cd $(dirname "$0") && pwd)
+SCRIPTDIR=$(cd "$(dirname "$0")" && pwd)
ROOTDIR="$SCRIPTDIR/../.."
cd $ROOTDIR
cat whisk.properties
TERM=dumb ./gradlew :tests:testCoverageLean :tests:reportCoverage
# disabled test until https://github.com/apache/incubator-openwhisk/issues/4169 is resolved
-TERM=dumb ./gradlew :tests:testCoverageLean :tests:reportCoverage # :tests:testSwaggerCodegen
+#TERM=dumb ./gradlew :tests:testCoverageLean :tests:reportCoverage # :tests:testSwaggerCodegen
bash <(curl -s https://codecov.io/bash)
echo "Time taken for ${0##*/} is $SECONDS secs"
|