How to get SpecUnit to run within a TeamCity CI build - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:51:16Z http://stackoverflow.com/feeds/question/27889 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/27889/how-to-get-specunit-to-run-within-a-teamcity-ci-build 0 How to get SpecUnit to run within a TeamCity CI build Sean Chambers 2008-08-26T12:26:10Z 2008-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>&lt;echo message="**** Starting SpecUnit report generation ****" /&gt; &lt;copy file="${specunit.exe}" tofile="${output.dir}SpecUnit.Report.exe" /&gt; &lt;exec program="${output.dir}SpecUnit.Report.exe" failonerror="false"&gt; &lt;arg value="${acceptance.tests.assembly}" /&gt; &lt;/exec&gt; </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#28346 0 Answer by Peter Samwel for How to get SpecUnit to run within a TeamCity CI build Peter Samwel 2008-08-26T15:21:19Z 2008-08-26T15:28:00Z <p>You need to specify the full path to the assembly argument I think...</p> <pre><code> &lt;exec program="${output.dir}SpecUnit.Report.exe" verbose="true"&gt; &lt;arg value="${output.dir}${acceptance.tests.assembly}" /&gt; &lt;/exec&gt; </code></pre>