zhenlineo commented on PR #39712: URL: https://github.com/apache/spark/pull/39712#issuecomment-1405502043
@LuciferYang I verified the path for SBT and maven again. All are able to run the test successfully. The quickest is the following: ``` sbt package sbt "connect-client-jvm/testOnly *CompatibilitySuite" ``` For maven, we can build the two package separately and then run the maven test correctly. The reason your sbt command did not work is that the command `build/sbt "connect-client-jvm/package"` does not shade the client jar. When running a global `sbt package`, a new shaded jar named `spark-connect-client-jvm-assembly` will be added besides the non shaded jar. I am all up to improve the test flow if you can advise? -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
