How to get SpecUnit to run within a TeamCity CI build - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T09:51:16Zhttp://stackoverflow.com/feeds/question/27889http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/27889/how-to-get-specunit-to-run-within-a-teamcity-ci-build0How to get SpecUnit to run within a TeamCity CI buildSean Chambers2008-08-26T12:26:10Z2008-08-26T15:28:00Z
<p>I am trying to get SpecUnit to run in a continuous integration build using Nant. At the moment the files are in the correct place but no output is generated from SpecUnit.Report.exe. Here is the relevant task from the nant build script:</p>
<pre><code><echo message="**** Starting SpecUnit report generation ****" />
<copy file="${specunit.exe}" tofile="${output.dir}SpecUnit.Report.exe" />
<exec program="${output.dir}SpecUnit.Report.exe" failonerror="false">
<arg value="${acceptance.tests.assembly}" />
</exec>
</code></pre>
<p>Please note, ${specunit.exe} is the full path to where SpecUnit.Report.exe is located. ${output.dir} is the teamcity output directory for the current build agent. ${acceptance.tests.assembly} is "AcceptanceTests.dll"</p>
<p>Anyone tried this before?</p>
http://stackoverflow.com/questions/27889/how-to-get-specunit-to-run-within-a-teamcity-ci-build/28346#283460Answer by Peter Samwel for How to get SpecUnit to run within a TeamCity CI buildPeter Samwel2008-08-26T15:21:19Z2008-08-26T15:28:00Z<p>You need to specify the full path to the assembly argument I think...</p>
<pre><code> <exec program="${output.dir}SpecUnit.Report.exe" verbose="true">
<arg value="${output.dir}${acceptance.tests.assembly}" />
</exec>
</code></pre>