aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-11-16 16:57:50 -0800
committerAndrew Or <andrew@databricks.com>2015-11-16 16:57:50 -0800
commitea6f53e48a911b49dc175ccaac8c80e0a1d97a09 (patch)
treee4ccfa2a8fdab701361629787dc680ed17b39de1 /core
parentfd14936be7beff543dbbcf270f2f9749f7a803c4 (diff)
downloadspark-ea6f53e48a911b49dc175ccaac8c80e0a1d97a09.tar.gz
spark-ea6f53e48a911b49dc175ccaac8c80e0a1d97a09.tar.bz2
spark-ea6f53e48a911b49dc175ccaac8c80e0a1d97a09.zip
[SPARKR][HOTFIX] Disable flaky SparkR package build test
See https://github.com/apache/spark/pull/9390#issuecomment-157160063 and https://gist.github.com/shivaram/3a2fecce60768a603dac for more information Author: Shivaram Venkataraman <shivaram@cs.berkeley.edu> Closes #9744 from shivaram/sparkr-package-test-disable.
Diffstat (limited to 'core')
-rw-r--r--core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
index 42e748ec6d..d494b0caab 100644
--- a/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
+++ b/core/src/test/scala/org/apache/spark/deploy/SparkSubmitSuite.scala
@@ -369,7 +369,9 @@ class SparkSubmitSuite
}
}
- test("correctly builds R packages included in a jar with --packages") {
+ // TODO(SPARK-9603): Building a package is flaky on Jenkins Maven builds.
+ // See https://gist.github.com/shivaram/3a2fecce60768a603dac for a error log
+ ignore("correctly builds R packages included in a jar with --packages") {
assume(RUtils.isRInstalled, "R isn't installed on this machine.")
val main = MavenCoordinate("my.great.lib", "mylib", "0.1")
val sparkHome = sys.props.getOrElse("spark.test.home", fail("spark.test.home is not set!"))