Hi,
Is there any way to produce visual results of NUnit tests from within TeamCity's "Tests" tab, currently my NAnt script outputs an .xml file of the results using the following task:
<nunit2 haltonfailure="false" failonerror="false" verbose="true">
<formatter type="Xml" extension=".xml" outputdir="${tests.output.dir}" usefile="true" />
<test assemblyname="${assemblies.output.dir}/TestApp.Tests.dll" />
</nunit2>
TIA