-
Notifications
You must be signed in to change notification settings - Fork 12
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
Add method-level test filtering support to JUnitRunner #34
base: main
Are you sure you want to change the base?
Add method-level test filtering support to JUnitRunner #34
Conversation
Hi @jakobcodes, we require contributors to sign our Contributor License Agreement, and we don't have yours on file. In order for us to review and merge your code, please access https://www.artima.com/cla/choose-type to sign our Contributor License Agreement. Your effort is highly appreciated. Thank you. |
@cla-bot[bot] check |
The cla-bot has been summoned, and re-checked this pull request! |
Hi @cheeseng, when you have a chance, it would be great if you could review the changes in this PR 🥇 |
oooooohh, this looks really appealing |
Hi @jakobcodes , @MajaSt1 @SethTisue , sorry somehow I missed this one, overall I think the PR looks fine, with possible minor improvement I would suggest:
Sorry again for missing this one, let's request @bvenners to review for approval. |
…ns and tag tests with "org.scalatest.Selected"
Hi @MajaSt1, we require contributors to sign our Contributor License Agreement, and we don't have yours on file. In order for us to review and merge your code, please access https://www.artima.com/cla/choose-type to sign our Contributor License Agreement. Your effort is highly appreciated. Thank you. |
@cla-bot[bot] check |
The cla-bot has been summoned, and re-checked this pull request! |
Description
This PR enhances the JUnitRunner by adding support for method-level test filtering. The implementation allows for more granular control over test execution by enabling filtering of individual test methods, rather than just entire test suites.
Changes
JUnitRunner
excludedTests
tracking mechanism for filtered test methodsImplementation Details