Sneha Shukla
Sneha Shukla

Reputation: 383

How does @parallel=false work when put at the top of a scenario and not feature

If we put @parallel=false only at the top of a scenario and not on a feature , then will it stop running the test cases in parallel and still run the features in parellel?

My whole intention is to not run scenarios parallely but run the features parallely.

Upvotes: 1

Views: 1322

Answers (1)

Peter Thomas
Peter Thomas

Reputation: 58058

Features will always run in parallel if you use the parallel runner.

If you add the @parallel=false annotation - it will only affect the individual Scenario.

Upvotes: 2

Related Questions