aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2015-06-03 17:40:14 -0700
committerAndrew Or <andrew@databricks.com>2015-06-03 17:45:07 -0700
commit96f71b105ac9a3e965c61ef4c93f502a718e6332 (patch)
treeeaf0693ce77b6d5f7f7339ff5ebddc795aa2acb5
parentc2c129073f97de5c35532177b0811ff0892429b2 (diff)
downloadspark-96f71b105ac9a3e965c61ef4c93f502a718e6332.tar.gz
spark-96f71b105ac9a3e965c61ef4c93f502a718e6332.tar.bz2
spark-96f71b105ac9a3e965c61ef4c93f502a718e6332.zip
[BUILD] Increase Jenkins test timeout
Currently hive tests alone take 40m. The right thing to do is to reduce the test time. However, that is a bigger project and we currently have PRs blocking on tests not timing out.
-rwxr-xr-xdev/run-tests-jenkins4
1 files changed, 3 insertions, 1 deletions
diff --git a/dev/run-tests-jenkins b/dev/run-tests-jenkins
index 8b2a44fd72..3cbd8666c8 100755
--- a/dev/run-tests-jenkins
+++ b/dev/run-tests-jenkins
@@ -47,7 +47,9 @@ COMMIT_URL="https://github.com/apache/spark/commit/${ghprbActualCommit}"
# GitHub doesn't auto-link short hashes when submitted via the API, unfortunately. :(
SHORT_COMMIT_HASH="${ghprbActualCommit:0:7}"
-TESTS_TIMEOUT="150m" # format: http://linux.die.net/man/1/timeout
+# format: http://linux.die.net/man/1/timeout
+# must be less than the timeout configured on Jenkins (currently 180m)
+TESTS_TIMEOUT="175m"
# Array to capture all tests to run on the pull request. These tests are held under the
#+ dev/tests/ directory.