Skip to content

Commit

Permalink
For A/B testing
Browse files Browse the repository at this point in the history
  • Loading branch information
xuanyuanking committed Jul 20, 2020
1 parent 0556b4b commit 38e5ff4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion project/SparkBuild.scala
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ object SparkParallelTestGrouping {
"org.apache.spark.sql.catalyst.expressions.MathExpressionsSuite",
"org.apache.spark.sql.hive.HiveExternalCatalogSuite",
"org.apache.spark.sql.hive.StatisticsSuite",
"org.apache.spark.sql.hive.execution.HiveCompatibilitySuite",
"org.apache.spark.sql.hive.client.VersionsSuite",
"org.apache.spark.sql.hive.client.HiveClientVersions",
"org.apache.spark.sql.hive.HiveExternalCatalogVersionsSuite",
Expand All @@ -489,7 +490,7 @@ object SparkParallelTestGrouping {

private def testNameToTestGroup(name: String): String = name match {
case _ if testsWhichShouldRunInTheirOwnDedicatedJvm.contains(name) => name
case _ if name.contains("org.apache.spark.sql.hive.execution") => HIVE_EXECUTION_TEST_GROUP
case _ if name.contains("org.apache.spark.sql.hive.execution") => DEFAULT_TEST_GROUP
case _ => DEFAULT_TEST_GROUP
}

Expand Down

0 comments on commit 38e5ff4

Please sign in to comment.