Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accept spark-submit arguments on the command-line #1455

Merged
merged 6 commits into from Oct 24, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -129,7 +129,7 @@ abstract class SparkTestDefinitions(val scalaVersionOpt: Option[String]) extends
val extraEnv =
if (needsWinUtils) maybeHadoopHomeForWinutils(root / "hadoop-home")
else Map.empty[String, String]
val res = os.proc(TestUtil.cli, "run", extraOptions, "--spark-standalone", "--jvm", "8", ".")
val res = os.proc(TestUtil.cli, "run", extraOptions, "--spark-standalone", ".")
alexarchambault marked this conversation as resolved.
Show resolved Hide resolved
.call(cwd = root, env = extraEnv)

val expectedOutput = "Result: 55"
Expand Down