I'm trying to run nunit3 exe through Jenkins but after building the project, it runs all available test cases parallely. They should run sequetially.
I tried where clause in nunit but how it will help with multiple categories?
Please help.
1 Answer 1
I'm trying to run nunit3 exe through Jenkins but after building the project, it runs all available test cases parallely.
This happens if you are using the [Parallelizable] attribute. By default, no parallel execution takes place.