From 259ec2e190437f277b2e9d36b4ef4a33d33de883 Mon Sep 17 00:00:00 2001 From: Chen Dai Date: Thu, 6 Jun 2024 13:51:12 -0700 Subject: [PATCH] Remove integ-test from root aggregate task Signed-off-by: Chen Dai --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index f12a19647..cf659b918 100644 --- a/build.sbt +++ b/build.sbt @@ -48,7 +48,7 @@ lazy val commonSettings = Seq( // running `scalafmtAll` includes all subprojects under root lazy val root = (project in file(".")) - .aggregate(flintCore, flintSparkIntegration, pplSparkIntegration, sparkSqlApplication, integtest) + .aggregate(flintCore, flintSparkIntegration, pplSparkIntegration, sparkSqlApplication) .disablePlugins(AssemblyPlugin) .settings(name := "flint", publish / skip := true)