开发者

Step by step process for setting up Gallio and NbUnit within TeamCity

开发者 https://www.devze.com 2022-12-31 01:52 出处:网络
I have searched the internet and found a few references saying that Gallio and NbU开发者_运维问答nit can run within TeamCity as part of the build process.

I have searched the internet and found a few references saying that Gallio and NbU开发者_运维问答nit can run within TeamCity as part of the build process.

I am running my builds against the solutions files and need TeamCity to run all the test in the solution.

Is there a step by step process for setting up Gallio and NbUnit within TeamCity anywhere?


You can do this through MSBuild

      <!-- Runs Tests -->
      <Gallio IgnoreFailures="true" Files="@(TestFiles)">
        <Output TaskParameter="ExitCode" PropertyName="ExitCode" />
      </Gallio>
      <Error Text="Tests execution failed" Condition=" '$(ExitCode)' != 0 And '@(TestFiles)' != '' " />
0

精彩评论

暂无评论...
验证码 换一张
取 消