Skip to content

Using TUnit in azure pipelines (test results and coverage) #1264

Answered by gentledepp
gentledepp asked this question in Q&A
Discussion options

You must be logged in to vote

wow... so fast... 😅
You are awesome... nich was right :-D

In the meantime, I managed to get it to work!

Here is my default devops pipeline:

# note: add a trigger that suits your needs
trigger:
  - develop 

# note: a windows machine is not required, but we use it anyways!
pool:
   vmImage: 'windows-latest'

variables:
  buildConfiguration: 'Debug'
  solution: 'MyAwesomeSolution.sln'
  buildPlatform: 'AnyCPU'
  
steps:
  - task: NuGetToolInstaller@1
  
  # simplest way to ensure everything you need is installed
  - task: PowerShell@2
    displayName: "dotnet workload restore"
    inputs:
      targetType: 'inline'
      script: 'dotnet workload restore src\$(solution)'

 # Note: We are use…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@gentledepp
Comment options

Answer selected by gentledepp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants