|
It's actually quite simple if you check the command arguments for the console runner.
c:\MyProject>packages\Chutzpah.1.3.1.1\tools\chutzpah.console.exe MyProject\spec /teamcity
Or in an MSBuild project:
<?xml version="1.0" encoding="utf-8" ?><Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Chutzpah" ToolsVersion="4.0">
<PropertyGroup> <ChutzpahPath>..\packages\Chutzpah.1.3.1.1\tools\chutzpah.console.exe</ChutzpahPath> <TestSourcePath>spec</TestSourcePath> </PropertyGroup>
<Target Name="Chutzpah"> <Exec Command="$(ChutzpahPath) $(TestSourcePath) /teamcity" /> </Target></Project>
(Sorry for formatting - Insert Code Snippet seems to be broken in Chrome)
|