File tree Expand file tree Collapse file tree 4 files changed +0
-6
lines changed
src/client/testing/testController Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ export class PytestTestDiscoveryAdapter implements ITestDiscoveryAdapter {
196196
197197 // Take all output from the subprocess and add it to the test output channel. This will be the pytest output.
198198 // Displays output to user and ensure the subprocess doesn't run into buffer overflow.
199- // TODO: after a release, remove discovery output from the "Python Test Log" channel and send it to the "Python" channel instead.
200199
201200 result ?. proc ?. stdout ?. on ( 'data' , ( data ) => {
202201 const out = fixLogLinesNoTrailing ( data . toString ( ) ) ;
Original file line number Diff line number Diff line change @@ -237,7 +237,6 @@ export class PytestTestExecutionAdapter implements ITestExecutionAdapter {
237237
238238 // Take all output from the subprocess and add it to the test output channel. This will be the pytest output.
239239 // Displays output to user and ensure the subprocess doesn't run into buffer overflow.
240- // TODO: after a release, remove run output from the "Python Test Log" channel and send it to the "Test Result" channel instead.
241240 result ?. proc ?. stdout ?. on ( 'data' , ( data ) => {
242241 const out = utils . fixLogLinesNoTrailing ( data . toString ( ) ) ;
243242 runInstance ?. appendOutput ( out ) ;
Original file line number Diff line number Diff line change @@ -179,8 +179,6 @@ export class UnittestTestDiscoveryAdapter implements ITestDiscoveryAdapter {
179179 resultProc = result ?. proc ;
180180
181181 // Displays output to user and ensure the subprocess doesn't run into buffer overflow.
182- // TODO: after a release, remove discovery output from the "Python Test Log" channel and send it to the "Python" channel instead.
183- // TODO: after a release, remove run output from the "Python Test Log" channel and send it to the "Test Result" channel instead.
184182 result ?. proc ?. stdout ?. on ( 'data' , ( data ) => {
185183 const out = fixLogLinesNoTrailing ( data . toString ( ) ) ;
186184 traceInfo ( out ) ;
Original file line number Diff line number Diff line change @@ -246,8 +246,6 @@ export class UnittestTestExecutionAdapter implements ITestExecutionAdapter {
246246 resultProc = result ?. proc ;
247247
248248 // Displays output to user and ensure the subprocess doesn't run into buffer overflow.
249- // TODO: after a release, remove discovery output from the "Python Test Log" channel and send it to the "Python" channel instead.
250- // TODO: after a release, remove run output from the "Python Test Log" channel and send it to the "Test Result" channel instead.
251249
252250 result ?. proc ?. stdout ?. on ( 'data' , ( data ) => {
253251 const out = fixLogLinesNoTrailing ( data . toString ( ) ) ;
You can’t perform that action at this time.
0 commit comments