aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavies Liu <davies@databricks.com>2015-04-03 15:22:21 -0700
committerAndrew Or <andrew@databricks.com>2015-04-03 15:22:21 -0700
commit9b40c17ab161b64933539abeefde443cb4f98673 (patch)
tree3c537647ca3e547e343219fc13a91b43494290a1
parent26b415e15970d02523f0df459557b09ffda0c8c1 (diff)
downloadspark-9b40c17ab161b64933539abeefde443cb4f98673.tar.gz
spark-9b40c17ab161b64933539abeefde443cb4f98673.tar.bz2
spark-9b40c17ab161b64933539abeefde443cb4f98673.zip
[SPARK-6700] disable flaky test
Author: Davies Liu <davies@databricks.com> Closes #5356 from davies/flaky and squashes the following commits: 08955f4 [Davies Liu] disable flaky test
-rw-r--r--yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala3
1 files changed, 2 insertions, 1 deletions
diff --git a/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala b/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
index 0e37276ba7..c06c010567 100644
--- a/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
+++ b/yarn/src/test/scala/org/apache/spark/deploy/yarn/YarnClusterSuite.scala
@@ -143,7 +143,8 @@ class YarnClusterSuite extends FunSuite with BeforeAndAfterAll with Matchers wit
}
}
- test("run Python application in yarn-cluster mode") {
+ // Enable this once fix SPARK-6700
+ ignore("run Python application in yarn-cluster mode") {
val primaryPyFile = new File(tempDir, "test.py")
Files.write(TEST_PYFILE, primaryPyFile, UTF_8)
val pyFile = new File(tempDir, "test2.py")