anibal-bojorquez
anibal-bojorquez

Reputation: 43

Running test cases in parallel in IntelliJ IDEA

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

Answers (1)

Daniel Tapia
Daniel Tapia

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

Related Questions