Yicong-Huang commented on code in PR #4276: URL: https://github.com/apache/texera/pull/4276#discussion_r3212066220
########## common/workflow-core/build.sbt: ########## @@ -37,6 +37,10 @@ ThisBuild / conflictManager := ConflictManager.latestRevision // Restrict parallel execution of tests to avoid conflicts Global / concurrentRestrictions += Tags.limit(Tags.Test, 1) +// Fork a separate JVM for tests to avoid sbt classloader conflicts +// (iceberg-aws S3FileIO hits ClassCastException with layered classloaders) +Test / fork := true +Test / baseDirectory := (ThisBuild / baseDirectory).value Review Comment: do we really have to bundle min io and its tests into workflow-core? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
