刚刚介绍给Azure piplelines。我的项目是.NET项目,并且与Azure链接在一起,但是在集成之前不运行我的单元测试(因此即使在测试失败的情况下也可以集成所有内容)
我的.yaml文件是:
# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
trigger:
- master
pool:
vmImage: 'ubuntu-latest'
variables:
buildConfiguration: 'Release'
steps:
- script: dotnet build --configuration $(buildConfiguration)
displayName: 'dotnet build $(buildConfiguration)'
我的单元测试在解决方案MyProjectTests
下的解决方案中,并在ProjectTests.cs
文件中。谁能告诉我我需要添加到yaml文件中的内容(或一般情况下执行该操作),以便使其运行?我本人对此进行了调查,似乎无法找到解决方案,并且我想避免因尝试运行单元测试而失败的提交历史记录被阻塞。
非常感谢。
更新:
我通过添加以下内容进行了修复:
- task: DotNetCoreCLI@2
inputs:
command: test
projects: '**/*Tests/*.csproj'
arguments: '--configuration $(buildConfiguration)'
答案 0 :(得分:0)
您在这里。
- task: DotNetCoreCLI@2
displayName: Test
inputs:
command: test
projects: 'PathToTestProject/TestProject.csproj'
arguments: '--configuration Debug'
当然,您可以选择任何所需的配置。并且displayName是可选的。如果您的任何测试失败,则管道将中止后续步骤。