-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
remove ITestLogChannel #24954
remove ITestLogChannel #24954
Conversation
@@ -79,7 +74,7 @@ export class UnittestTestDiscoveryAdapter implements ITestDiscoveryAdapter { | |||
workspaceFolder: uri, | |||
command, | |||
cwd, | |||
outChannel: this.outputChannel, | |||
outChannel: this.logOutputChannel, |
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.
I have replaced ITestOutputChannel
with ILogOutputChannel
and still passing it through the the adapters to then add it to the spawn options here. Want to confirm this is necessary since I thought this output channel was used by spawn but not exactly sure how to confirm. @karthiknadig
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.
I think this looks fine. I am not really sure if this is even used internally anymore. But, need to follow the references here to understand better.
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.
for recording purposes- Karthik and I looked into execObservable and found no usage of the output channel and so we it entirely from the adapter
If the changes appear safe, you can manually trigger the pipeline by commenting |
No description provided.