We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8058e09 commit 5c2b0ddCopy full SHA for 5c2b0dd
.github/workflows/build.yml
@@ -73,6 +73,7 @@ jobs:
73
path: "./Artefacts"
74
- name: "Publish Test Summary"
75
uses: test-summary/action@v2
76
+ if: always()
77
with:
78
paths: "./Artefacts/*/*.xml"
79
build.cake
@@ -68,7 +68,7 @@ Task("Test")
68
Loggers = new string[]
69
{
70
$"trx;LogFilePrefix={project.GetFilenameWithoutExtension()}",
71
- $"junit;LogFilePrefix={project.GetFilenameWithoutExtension()}",
+ $"junit;LogFileName={project.GetFilenameWithoutExtension()}_{{framework}}.xml",
72
$"html;LogFilePrefix={project.GetFilenameWithoutExtension()}",
},
NoBuild = true,
0 commit comments