Reputation: 383
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
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