Skip to content

Commit 719adb5

Browse files
committed
tried some more; still can't write spark tests
1 parent bdf601f commit 719adb5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

build.sbt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -869,5 +869,19 @@ lazy val defaultCore = (project in file("default-core"))
869869
"org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test" classifier "tests",
870870
"org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test" classifier "tests"
871871
*/
872+
873+
// Verbatim from golden tables, trying out different test / classifier tests combinations
874+
// test and classifier tests -> Cause: java.lang.ClassNotFoundException: delta.DefaultSource
875+
// just test -> object QueryTest is not a member of package org.apache.spark.sql
876+
// just classifier tests -> Symbol 'type org.apache.spark.sql.SparkSession' is missing from the classpath.
877+
// "io.delta" % "delta-core_2.12" % "1.1.0" % "test",
878+
// "org.apache.spark" % "spark-catalyst_2.12" % "3.2.0" % "test",
879+
// "org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test",
880+
// "org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test",
881+
//
882+
// "io.delta" % "delta-core_2.12" % "1.1.0" % "test" classifier "tests",
883+
// "org.apache.spark" % "spark-catalyst_2.12" % "3.2.0" % "test" classifier "tests",
884+
// "org.apache.spark" % "spark-core_2.12" % "3.2.0" % "test" classifier "tests",
885+
// "org.apache.spark" % "spark-sql_2.12" % "3.2.0" % "test" classifier "tests"
872886
)
873887
)

0 commit comments

Comments
 (0)