I recently moved out of nunit tag and moved to exec tag to run nunit console for running unit tests.
Here is what i have in my build script:
exec program="nunit-console.exe" verbose="true" failonerror="true"> arg file="../abc.dll"/> exec>
Here is what I see in output:
task name="exec">250.0064250.0064
As you can see it did run from the duration and I know that my tests are currently failing but my build didn't fail.
Any ideas?
<nunit>
task and that is a good thing. I know<exec>
task gives a meaningful output as well since it works for us. I will check this tomorrow. Nevertheless a code sample would be helpful. – The Chairman