lhotari commented on pull request #10148: URL: https://github.com/apache/pulsar/pull/10148#issuecomment-814237768
This seems to be pretty hard to get right. TestNG has this particular detail: https://testng.org/doc/documentation-main.html#partial-groups If the test group is defined at the test class level, the group gets assigned to all test methods. It's not possible to override the group of a single test method, it will just add additional groups to the method. This is one reason why the current solution doesn't work. Tests get executed as part of the "quarantine" group in addition. I found some answer on Stackoverflow where adding a custom test listener can solve this problem. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
