I have the following project structure
/
src/
org.mayapp.main.Main/
test/
org.myapp.test.main.MainTestSuite/
When I want to run my Unit-Tests, for example. org.myapp.test.main.MainTestSuiteIntelliJ is always trying to compile all the packages in the whole project.
I want to prevent this because I'm currently developing part of my application and still want to run Unit-Tests in other parts of the application.
Is there a way to prevent IntelliJ from compiling the entire project before starting Unit-Tests?
source
share