We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11157a1 commit ee26d76Copy full SHA for ee26d76
2 files changed
.github/workflows/test.yml
@@ -29,4 +29,4 @@ jobs:
29
with:
30
name: Pester Tests (${{ matrix.os }})
31
path: testResults.xml
32
- reporter: java-junit # Pester 的 NUnit3/NUnitXml 输出通常兼容 JUnit 解析器
+ reporter: dotnet-nunit
PesterConfiguration.ps1
@@ -80,7 +80,7 @@ $config = @{
80
TestResult = @{
81
Enabled = $true
82
OutputPath = "testResults.xml"
83
- OutputFormat = 'NUnitXml'
+ OutputFormat = 'NUnit3'
84
TestSuiteName = "PsUtils.Tests" ## 可选:给你的测试套件起个名字
85
}
86
0 commit comments