Skip to content
Snippets Groups Projects
Commit 157e7d0f authored by Patrick Wendell's avatar Patrick Wendell
Browse files

HOTFIX: Ignore flaky tests in YARN

parent b64fcbd2
No related branches found
No related tags found
No related merge requests found
......@@ -86,13 +86,13 @@ class YarnClusterSuite extends FunSuite with BeforeAndAfterAll with Matchers {
super.afterAll()
}
test("run Spark in yarn-client mode") {
ignore("run Spark in yarn-client mode") {
var result = File.createTempFile("result", null, tempDir)
YarnClusterDriver.main(Array("yarn-client", result.getAbsolutePath()))
checkResult(result)
}
test("run Spark in yarn-cluster mode") {
ignore("run Spark in yarn-cluster mode") {
val main = YarnClusterDriver.getClass.getName().stripSuffix("$")
var result = File.createTempFile("result", null, tempDir)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment