如何在团队构建中的同一构建脚本中运行两种不同类型的测试?

时间:2010-09-10 07:19:06

标签: tfs msbuild team-build

在编译源代码后,我在团队构建脚本中要执行以下一系列操作:

-) Sources compiled
-) Run BVT tests (all tests in dlls *.bvt.dll)
-) Set build quality to BVTs Passed (or Rejected, if tests fail)
-) Run Unit tests (all tests in dlls *.unittests.dll)
-) Set build quality to Unit Tests Passed (or Rejected, if tests fail)

我可以使用VS 2008的团队构建脚本来实现这一目标吗?如果是这样,怎么样?

编辑:我找到了一种编辑构建质量的方法。现在我需要的是弄清楚如何分两个阶段运行我的测试。谁在那里?

提前致谢!

1 个答案:

答案 0 :(得分:0)

运行完成的一种可能方法是编写自定义构建任务/工作流活动。由于没有更多的替代方案,这被标记为答案。如果还有其他答案,则会考虑这些答案。