Skip to content

Commit 86da781

Browse files
committed
remove TODO items
1 parent 901f8e4 commit 86da781

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

src/client/testing/testController/pytest/pytestDiscoveryAdapter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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());

src/client/testing/testController/pytest/pytestExecutionAdapter.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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);

src/client/testing/testController/unittest/testDiscoveryAdapter.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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);

src/client/testing/testController/unittest/testExecutionAdapter.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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());

0 commit comments

Comments
 (0)