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:27 -0700
commit3366af67bf35c1c753ce4f461e66574fd36d7827 (patch)
tree4a40d32bba4dffeb74df9e00df623c037579d03d
parentf17a2fe9b32c3bd6346718089d9db4da597df402 (diff)
downloadspark-3366af67bf35c1c753ce4f461e66574fd36d7827.tar.gz
spark-3366af67bf35c1c753ce4f461e66574fd36d7827.tar.bz2
spark-3366af67bf35c1c753ce4f461e66574fd36d7827.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 (cherry picked from commit 9b40c17ab161b64933539abeefde443cb4f98673) Signed-off-by: Andrew Or <andrew@databricks.com>
-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")