aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorRongGu <gurongwalker@gmail.com>2014-11-09 23:48:15 -0800
committerPatrick Wendell <pwendell@gmail.com>2014-11-09 23:48:15 -0800
commitbd86cb1738800a0aa4c88b9afdba2f97ac6cbf25 (patch)
treec6365e11bdd4ad8b2124f72464c0ed3a680aac49 /project
parent227488d8cd25d1ef0a53189adfd4797bf01fdf3c (diff)
downloadspark-bd86cb1738800a0aa4c88b9afdba2f97ac6cbf25.tar.gz
spark-bd86cb1738800a0aa4c88b9afdba2f97ac6cbf25.tar.bz2
spark-bd86cb1738800a0aa4c88b9afdba2f97ac6cbf25.zip
[SPARK-2703][Core]Make Tachyon related unit tests execute without deploying a Tachyon system locally.
Make Tachyon related unit tests execute without deploying a Tachyon system locally. Author: RongGu <gurongwalker@gmail.com> Closes #3030 from RongGu/SPARK-2703 and squashes the following commits: ad08827 [RongGu] Make Tachyon related unit tests execute without deploying a Tachyon system locally
Diffstat (limited to 'project')
-rw-r--r--project/SparkBuild.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/project/SparkBuild.scala b/project/SparkBuild.scala
index 657e4b4432..351e57a4b5 100644
--- a/project/SparkBuild.scala
+++ b/project/SparkBuild.scala
@@ -360,6 +360,8 @@ object TestSettings {
testOptions += Tests.Argument(TestFrameworks.JUnit, "-v", "-a"),
// Enable Junit testing.
libraryDependencies += "com.novocode" % "junit-interface" % "0.9" % "test",
+ // Enable Tachyon local testing.
+ libraryDependencies += "org.tachyonproject" % "tachyon" % "0.5.0" % "test" classifier "tests",
// Only allow one test at a time, even across projects, since they run in the same JVM
parallelExecution in Test := false,
concurrentRestrictions in Global += Tags.limit(Tags.Test, 1),