Re: [How To] run test suites for specific module

2022-01-24 Thread Qian SUN
Hi Shen You can use sbt to run a specific suite. 1. run sbt shell. $ bash build/sbt 2. specify project. sbt > project core You can get project name from properties `sbt.project.name` from pom.xml 3. Finally, you can run a specific suite sbt > testOnly org.apache.spark.sc

Re: [How To] run test suites for specific module

2022-01-24 Thread Maciej
Hi, Please check the relevant section of the developer tools docs: https://spark.apache.org/developer-tools.html#running-individual-tests On 1/25/22 00:44, Fangjia Shen wrote: > Hello all, > > How do you run Spark's test suites when you want to test the correctness > of your code? Is there a wa

[How To] run test suites for specific module

2022-01-24 Thread Fangjia Shen
Hello all, How do you run Spark's test suites when you want to test the correctness of your code? Is there a way to run a specific test suite for Spark? For example, running test suite XXXSuite alone, instead of every class under the test/ directories. Here's some background info about what