簡體   English   中英

Devops Pipeline 拒絕運行 XUnit 測試

[英]Devops Pipeline refusing to run XUnit tests

我對讓單元測試在 Azure Devops Pipeline 中運行感到非常沮喪,下面是我的 YAML 文件內容

trigger:
- main

pool:
  vmImage: 'windows-2019'

variables:
  solution: '**/FestWise.stock*.sln'
  buildPlatform: 'Any CPU'
  buildConfiguration: 'Release'
  imageRepository: 'festwisestock'
  dotNetCoreVrs: '3.1.x'
  
steps:
- task: UseDotNet@2
  inputs:
    version: '$(dotNetCoreVrs)'
    packageType: 'sdk'


- task: NuGetCommand@2
  inputs:
    command: 'restore'
    restoreSolution: '**/FestWise.stock*.sln'
    feedsToUse: 'select'

- task: DotNetCoreCLI@2
  displayName: 'Restore project dependencies'
  inputs:
    command: 'restore'
    projects: '**/FestWise.Stock/FestWise.Stock.API/FestWise.StockService*.csproj'

- task: DotNetCoreCLI@2
  displayName: 'Build the project - $(buildConfiguration)'
  inputs:
    command: 'build'
    arguments: '--no-restore --configuration $(buildConfiguration)'
    projects: '**/FestWise.Stock/FestWise.Stock.API/FestWise.StockService*.csproj'

- task: DotNetCoreCLI@2
  displayName: 'Run unit tests - $(buildConfiguration)'
  inputs:
    command: 'test'
    arguments: '--no-build --configuration $(buildConfiguration)'
    publishTestResults: true
    projects: '**/*StockService.UnitTests.csproj'

結果如下:

Starting: Run unit tests - Release
==============================================================================
Task         : .NET Core
Description  : Build, test, package, or publish a dotnet application, or run a custom dotnet command
Version      : 2.187.0
Author       : Microsoft Corporation
Help         : https://docs.microsoft.com/azure/devops/pipelines/tasks/build/dotnet-core-cli
==============================================================================
C:\Windows\system32\chcp.com 65001
Active code page: 65001
Info: .NET Core SDK/runtime 2.2 and 3.0 are now End of Life(EOL) and have been removed from all hosted agents. If you're using these SDK/runtimes on hosted agents, kindly upgrade to newer versions which are not EOL, or else use UseDotNet task to install the required version.
C:\hostedtoolcache\windows\dotnet\dotnet.exe test D:\a\1\s\FestWise.Stock\FestWise.StockService.UnitTests\FestWise.StockService.UnitTests.csproj --logger trx --results-directory D:\a\_temp --no-build --configuration Release
##[warning]No test result files were found.
Info: Azure Pipelines hosted agents have been updated and now contain .Net 5.x SDK/Runtime along with the older .Net Core version which are currently lts. Unless you have locked down a SDK version for your project(s), 5.x SDK might be picked up which might have breaking behavior as compared to previous versions. You can learn more about the breaking changes here: https://docs.microsoft.com/en-us/dotnet/core/tools/ and https://docs.microsoft.com/en-us/dotnet/core/compatibility/ . To learn about more such changes and troubleshoot, refer here: https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/build/dotnet-core-cli?view=azure-devops#troubleshooting
Finishing: Run unit tests - Release

這是我來的最遠的,它說它找到了正確的項目,但隨后沒有運行任何測試

所以這是一個需要弄清楚的戲劇,由於某種原因,它不想從上一步中找到構建 sln,因此--no-build參數使它不起作用

刪除那個論點為我解決了它

新的完整 yaml(進行了一些改進以使其更依賴於變量)

trigger:
- main

pool:
  vmImage: 'windows-2019'

variables:
  solution: '**/FestWise.stock*.sln'
  projectPath: '**/FestWise.Stock/FestWise.Stock.API/FestWise.StockService*.csproj'
  testProjectPath: '**/*/FestWise.StockService.UnitTests.csproj'
  buildPlatform: 'Any CPU'
  buildConfiguration: 'Release'
  dotNetCoreVrs: '3.1.x'
  
steps:
- task: UseDotNet@2
  inputs:
    version: '$(dotNetCoreVrs)'
    packageType: 'sdk'


- task: NuGetCommand@2
  inputs:
    command: 'restore'
    restoreSolution: $(solution)
    feedsToUse: 'select'

- task: DotNetCoreCLI@2
  displayName: 'Restore project dependencies'
  inputs:
    command: 'restore'
    projects: $(projectPath)

- task: DotNetCoreCLI@2
  displayName: 'Build the project - $(buildConfiguration)'
  inputs:
    command: 'build'
    arguments: '--no-restore --configuration $(buildConfiguration)'
    projects: $(projectPath)


- task: DotNetCoreCLI@2
  inputs:
      command: "test"
      includeNuGetOrg: true
      projects: $(testProjectPath)
      publishTestResults: true
  displayName: Run the server-side tests

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM