Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Merge pull request #40 from CraigRichards/patch-display-skipped-tests
Browse files Browse the repository at this point in the history
Patch AllureDisplayIgnoredAttribute as it was breaking the Categories Grouping
  • Loading branch information
unickq authored Jun 16, 2021
2 parents 0e012ad + c513b4e commit ddbc780
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/allure-nunit/Attributes/AllureDisplayIgnoredAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ public void AfterTest(ITest suite)
name = test.Name,
fullName = test.FullName,
status = Status.skipped,
statusDetails = new StatusDetails
{
message = test.Name
},
labels = new List<Label>
{
Label.Suite(_suiteName),
Expand Down

0 comments on commit ddbc780

Please sign in to comment.