<tun unit tests in parallel and other test sequent...
# stackoverflow
u
tun unit tests in parallel and other test sequentially in the same run spring boot kotlin i am having an issue to understand how can i run all the unit tests in my boot spring application(kotlin) in parallel while the springBootTests and the dataJpaTests will run one after the other(becouse they are failing due to shared context where running in parallel), my application structure is separated to different models and each model have it's unit,springBootTests and dataJpaTets, like this: -module 1: unit test 1 unit test 2 data jpa test 1 data jpa test 2 spring boot test1...