Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update TestFilterService.cs
  • Loading branch information
thomhurst authored May 31, 2025
commit 4e5eb89d667d5fbaba8241561a349d76c8c8174f
5 changes: 3 additions & 2 deletions TUnit.Engine/Services/TestFilterService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ private PropertyBag BuildPropertyBag(TestDetails testDetails)
return new PropertyBag(
[
..properties,
..categories
..categories,
..testDetails.Categories.Select(x => new KeyValuePairStringProperty("Category", x))
]
);
}
Expand All @@ -91,4 +92,4 @@ private bool UnhandledFilter(ITestExecutionFilter testExecutionFilter)
_logger.LogWarning($"Filter is Unhandled Type: {testExecutionFilter.GetType().FullName}");
return true;
}
}
}
Loading