aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/src/test/scala/org/apache/spark/ui/UISuite.scala6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/test/scala/org/apache/spark/ui/UISuite.scala b/core/src/test/scala/org/apache/spark/ui/UISuite.scala
index ed02b0ba00..fff8020ade 100644
--- a/core/src/test/scala/org/apache/spark/ui/UISuite.scala
+++ b/core/src/test/scala/org/apache/spark/ui/UISuite.scala
@@ -36,7 +36,7 @@ import scala.xml.Node
class UISuite extends FunSuite {
- test("basic ui visibility") {
+ ignore("basic ui visibility") {
withSpark(new SparkContext("local", "test")) { sc =>
// test if the ui is visible, and all the expected tabs are visible
eventually(timeout(10 seconds), interval(50 milliseconds)) {
@@ -50,7 +50,7 @@ class UISuite extends FunSuite {
}
}
- test("visibility at localhost:4040") {
+ ignore("visibility at localhost:4040") {
withSpark(new SparkContext("local", "test")) { sc =>
// test if visible from http://localhost:4040
eventually(timeout(10 seconds), interval(50 milliseconds)) {
@@ -60,7 +60,7 @@ class UISuite extends FunSuite {
}
}
- test("attaching a new tab") {
+ ignore("attaching a new tab") {
withSpark(new SparkContext("local", "test")) { sc =>
val sparkUI = sc.ui