我是Azure devops中的“基本”用户,我已经启动了Basic+Test计划免费试用版。我可以在菜单中看到测试计划。但是当我转到测试计划页面时,看不到“添加测试计划”按钮。我只看到以前创建的测试计划。我详细介绍了旧的测试计划,没有add test Suite按钮。如何授予查看“添加测试计划”按钮的权限?你能帮帮我吗?
我分享我的截图如下:
我有几个在dev/ test /db服务器上运行的单元测试用例。开发/测试服务器是内部服务器,位于防火墙之后。我已经在Azure DEVOPS的部署组中添加了这些服务器。
当尝试从Azure Devops运行测试用例时,我收到错误"remote server is not accessible“。azure devops如何连接到防火墙后面的远程服务器,并在版本中部署代码?以及我需要做什么来将这些测试用例执行到远程服务器。
当我构建我的测试解决方案(单元测试用例集)时,我得到以下错误,需要在下面的yaml脚本中添加timeoutinminutes。
错误1在代理宿主代理上运行的作业运行时间超过60分钟的最长时间。有关更多信息,请参阅
在下面找到yaml脚本:
# ASP.NET Core (.NET Framework)
# Build and test ASP.NET Core projects targeting the full .NET Framework.
# Add steps that publish symbols, save build artifacts, and more:
# ht
我有一个@Test方法,我从@Dataprovider获得测试用例名称。我需要并行运行测试用例:
@Test(dataprovider="testdataprodivder")
public void TestExecution(String arg 1)
{
/* Read the testcases from dataprovider and execute it*/
}
@Dataprovider(name="testdataprodivder")
public Object [][]Execution() throws IOException
{
ret
我使用Azure DevOps来使用Selenium运行测试用例。
当测试用例在selenium中失败时,我想知道如何创建工作项。
管道正在完成,没有错误(没有通知测试用例失败)
下面是我的yml管道的代码:
# Maven
# Build your Java project and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://learn.microsoft.com/azure/devops/pipelines/lang