You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to exclude any skipped tests from the calculation of total tests passed.
I would like the test run above to be reported with a 100% total pass rate instead of 31,39%. Out of the test that was run, all passed. We opted out of running the skipped tests because they were not appropriate for the current envrionment.
You could configure this behavior using a setting like:
public class TyrannoportSettings : ToolSettings
{
/// <summary>Only passed and failed tests will be used when calculating the total pass rate.</summary>
public bool ExcludeSkippedFromTotalPassRate { get; set; }
/// <summary>Gets or sets the output directory to render to.</summary>
public string? OutputBase { get; set; }
}
It would be nice to be able to exclude any skipped tests from the calculation of total tests passed.
I would like the test run above to be reported with a 100% total pass rate instead of 31,39%. Out of the test that was run, all passed. We opted out of running the skipped tests because they were not appropriate for the current envrionment.
You could configure this behavior using a setting like:
And from the command line:
Would you accept a PR for this behavior?
The text was updated successfully, but these errors were encountered: