VSTS构建不会在失败的测试中失败

时间:2018-06-29 22:32:26

标签: azure-devops azure-pipelines

我正在使用VSTS运行量角器e2e测试用例。我有一个运行测试的npm自定义任务,即使测试失败,vsts构建也不会失败。

如何使vsts构建失败?

1 个答案:

答案 0 :(得分:2)

您可以尝试将Write-Error与出口1结合使用以使任务失败:

Write-Error ("Some error")
exit 1

检查以下情况:

How to fail the build from a PowerShell task in TFS 2015