-
Notifications
You must be signed in to change notification settings - Fork 325
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
Moving discovery output to console logger #1111
Moving discovery output to console logger #1111
Conversation
After your change the output will change for run selected scenario. Old before your change
Output after your change
What is happening hereIt is listing all the test which will meet the filter Why it is happeningRun selected first call discovery and collect matching TestCases and then call Run on that selected test. Since we are now enabling ConsoleLogger for discovery as well and consoleLogger id listening for discovery events, its printing discovered tests on console. |
It will actually print all the discovery result and then the filtered tests list that ran. It's a special case needs to be handled, where both discovery and execution requests are made. |
Please print number of tests discovered also. |
@abhishkk Can we close this PR? |
Moving logic of writing discovery output from ListTestsArgumentProcessor to console logger.