I have the latest NUnit(3.2.0) installed and I have all my tests run in parallel. It might look like desirable behavior but I didn\'t ask for it and actually it broke some of my
You can prevent tests from running in parallel by adding the [NonParallelizable] attribute, which can be added in test, class and assembly level.