Skip to content

Commit 95fbe75

Browse files
committed
Workaround test-summary issue with .NET 4.7.2
1 parent 5c2b0dd commit 95fbe75

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.cake

+3
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ Task("Test")
7575
NoRestore = true,
7676
ResultsDirectory = artefactsDirectory,
7777
});
78+
// Workaround the test-summary GitHub Action not being able to handle empty JUnit test result XML files.
79+
// https://github.com/test-summary/action/issues/19
80+
DeleteFiles($"./**/{project.GetFilenameWithoutExtension()}_NETFramework472.xml");
7881
});
7982

8083
Task("Pack")

0 commit comments

Comments
 (0)