Reputation: 19725
Is there anyway to setup some 'workflow' in which when a developer do a checkin, there's a requirement to code review that may go back to developer (if there's something to change) or get accepted and go with the checkin. That would be a development branch.
No checkin should be accepted if (Code Review wasn't accepted. It does not build, It has not passed unit tests).
How and where to configure this things?
Upvotes: 3
Views: 1439
Reputation: 6775
For code review check-in policy you can use "Colin's ALM Checkin Policies" -
http://visualstudiogallery.msdn.microsoft.com/c476b708-77a8-4065-b9d0-919ab688f078
This should satisfy what you are looking for but if not then you can write a custom check-in policy. Check below URL:
For your other part of the question you an use Gated check-in to make sure the code compiles and all unit tests pass before code gets checked-in. See below images on how to set that up. You can go to this URL to understand how it works: http://msdn.microsoft.com/en-us/library/dd787631.aspx
Upvotes: 2
Reputation: 115057
By default there is none. You can build a custom checkin policy to require this
Upvotes: 0