I have a simple spark function to test DF windowing:
import org.apache.spark.sql.{DataFrame, SparkSession} object ScratchPad { def main(args:
Adding this line in the test class to disable hive worked for me
override implicit def enableHiveSupport: Boolean = false
Got it here:
https://github.com/holdenk/spark-testing-base/issues/148