Reputation: 43
I have test cases that I would them to run in parallel. What I've done was created a Compound run configuration where I inputed all of my TestNG. After running the Compound configuration I've noticed that all the test cases run at the same time. I would like to know if this considered running them in parallel?
Upvotes: 0
Views: 712
Reputation: 56
A Compound configuration by default will launch at once all your TestNG.
To launch configurations sequentially you can try Multirun plugin. It runs multiple Run Configurations simultaneously, but just add the default (empty) Multirun configuration and queue up other tasks to run sequentially through the Before launch section.
Upvotes: 2