Skip to content

Commit

Permalink
Workaround test-summary issue with .NET 4.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RehanSaeed committed Nov 17, 2022
1 parent 5c2b0dd commit 95fbe75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ Task("Test")
NoRestore = true,
ResultsDirectory = artefactsDirectory,
});
// Workaround the test-summary GitHub Action not being able to handle empty JUnit test result XML files.
// https://github.com/test-summary/action/issues/19
DeleteFiles($"./**/{project.GetFilenameWithoutExtension()}_NETFramework472.xml");
});

Task("Pack")
Expand Down

0 comments on commit 95fbe75

Please sign in to comment.