The allow parallel test execution setting on a solution is great. However it would be nice if at a project level we could turn it off, but leave other project on.
What this would me that the test within the project can run in parallel with other tests from other projects, just not with tests within its own project.
With this functionality when we have test within a project that for whatever (good or bad) reasons share resources across tests that they will not be competing for them if that is an issue. My example would testing a DAL and and using the new Microsoft LocalDB to help abstract a SQL Server Away to a local file. However when all the DB test run in parallel they are competing for access to the LocalDB file which only so many "connections" can be made at once. I can try to find a balance by increasing connections allowed, etc. However sometimes just having the test run synchronously would be an easier if we can just set it at the project level to only impact that project within its own tests.