-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
OSOE-466: Fixing that TestOutput.log not included in failure dump when run in GitHub Actions
- Loading branch information
Showing
4 changed files
with
30 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 11 additions & 10 deletions
21
Lombiq.Tests.UI/Services/GitHubActionsGroupingTestOutputHelper.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using Xunit.Abstractions; | ||
|
||
namespace Lombiq.Tests.UI.Services; | ||
|
||
/// <summary> | ||
/// Defines an <see cref="ITestOutputHelper"/> that decorates another <see cref="ITestOutputHelper"/>. | ||
/// </summary> | ||
public interface ITestOutputHelperDecorator : ITestOutputHelper | ||
{ | ||
/// <summary> | ||
/// Gets the decorated <see cref="ITestOutputHelper"/> instance. | ||
/// </summary> | ||
ITestOutputHelper Decorated { get; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters