-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Category to Test Category mapping for ListFullyQualifiedTests #1369
Adding Category to Test Category mapping for ListFullyQualifiedTests #1369
Conversation
@dotnet-bot please test Windows_NT / Release Build |
1 similar comment
@dotnet-bot please test Windows_NT / Release Build |
@@ -436,6 +437,13 @@ private static List<TestCase> GetFilteredTestCases(IEnumerable<TestCase> testCas | |||
} | |||
} | |||
|
|||
//This is hack for NUnit,Xunit to understand test category -> This method is called only for NUnit/Xunit | |||
if (!traitDictionary.ContainsKey(TestCategory) && traitDictionary.ContainsKey(Category)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
did we test TIA with this change
Can this switch |
@JunielKatarn No this cannot be used without an output file. This flag was introduced for a very specific purpose and we needed it to output to a file back then. |
@pranavkm How can I run tests in a binary, showing their fully qualified name? |
Currently ListFullyQualifiedTests doesn't filter tests based on TestCategory for Nunit/Xunit adapters