Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a build definition in TFS2010, I queue the build manually and set Disable Tests flag to False. However, my unit tests are still not getting run. I reviewed the xaml file and it appears fine. The configuration used for the build is "Release". Is there something else that needs to be done? Unit test related snippet:

if Condition="[Not DisableTests]" DisplayName="If Not DisableTests"

sap:VirtualizedContainerService.HintSize="1178,2157" mtbwt:BuildTrackingParticipant.Importance="Low">

share|improve this question

2 Answers

up vote 1 down vote accepted

Add some of the build file. Most likely you are either a) missing the custom action to run the tests or b) it is improperly configured.

share|improve this answer

Check the build definition properity "DisableTests" should be set to false.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.