Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/selenium/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
测试执行完成后,结果不会在azure管道中发布_Azure_Selenium_Azure Devops_Nunit_Azure Automation - Fatal编程技术网

测试执行完成后,结果不会在azure管道中发布

测试执行完成后,结果不会在azure管道中发布,azure,selenium,azure-devops,nunit,azure-automation,Azure,Selenium,Azure Devops,Nunit,Azure Automation,在Azure云中创建管道发布后触发测试自动化。测试执行完成后,无法在azure中查看测试结果。将错误日志视为TestResult.xml与“NUnit”测试结果格式不匹配 技术堆栈:C#,NUnit,Selenium,Azure 2019-11-11T07:48:53.6045046Z ##[section]Starting: UI: Publish Test Results **\*.xml 2019-11-11T07:48:53.6045046Z ======================

在Azure云中创建管道发布后触发测试自动化。测试执行完成后,无法在azure中查看测试结果。将错误日志视为TestResult.xml与“NUnit”测试结果格式不匹配

技术堆栈:C#,NUnit,Selenium,Azure

2019-11-11T07:48:53.6045046Z ##[section]Starting: UI: Publish Test Results **\*.xml
2019-11-11T07:48:53.6045046Z ==============================================================================
2019-11-11T07:48:53.6045046Z Task         : Publish Test Results
2019-11-11T07:48:53.6045046Z Description  : Publish test results to Azure Pipelines
2019-11-11T07:48:53.6045046Z Version      : 2.158.0
2019-11-11T07:48:53.6045046Z Author       : Microsoft Corporation
2019-11-11T07:48:53.6045046Z Help         : [Learn more about this task](https://go.microsoft.com/fwlink/?LinkID=613742)
2019-11-11T07:48:53.6045046Z ==============================================================================
2019-11-11T07:48:54.3203486Z [command]"C:\Program Files\dotnet\dotnet.exe" --version
2019-11-11T07:48:54.4922262Z 2.2.108
2019-11-11T07:48:54.4922262Z [command]C:\Vsts\Agent-1\_work\_tasks\PublishTestResults_0b0f01ed-7dde-43ff-9cbb-e48954daf9b1\2.158.0\modules\TestResultsPublisher.exe @C:\Vsts\Agent-1\_work\_temp\b5ad22b0-0457-11ea-9e79-9db0871d9ecd.txt
2019-11-11T07:49:36.6438230Z ##[warning]Invalid results file. Make sure the result format of the file 'C:\TestAutomation\QA\TestResult.xml' matches 'NUnit' test results format.
2019-11-11T07:49:36.6438230Z ##[section]Async Command Start: Publish test results
2019-11-11T07:49:36.6438230Z ##[section]Async Command End: Publish test results
2019-11-11T07:49:36.6438230Z ##[section]Finishing: UI: Publish Test Results **\*.xml

不知道您是否正在使用nunit@3. 这是一个众所周知的问题nunit@3. VSTS当前不支持NUnit3格式

你可以去投票并跟踪它


目前,您可以尝试使用解决方案,或添加powershell任务以运行上述公开发行版中建议的转换脚本。

您可以共享xml内容吗?您是否在azure中使用VSTest作为测试运行程序?@JAbdul您是否有机会使用Nunit-v2-result-writer进行尝试?请告诉我进展如何?