Skip to content

Commit 81c5971

Browse files
committed
switch to stdinStr
1 parent 2090f23 commit 81c5971

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/common/process/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type SpawnOptions = ChildProcessSpawnOptions & {
2525
throwOnStdErr?: boolean;
2626
extraVariables?: NodeJS.ProcessEnv;
2727
outputChannel?: OutputChannel;
28-
pytestExecutionTestIds?: string[];
28+
stdinStr?: string;
2929
};
3030

3131
export type ShellOptions = ExecOptions & { throwOnStdErr?: boolean };

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export class PytestTestExecutionAdapter implements ITestExecutionAdapter {
9191
TEST_PORT: this.testServer.getPort().toString(),
9292
},
9393
outputChannel: this.outputChannel,
94-
pytestExecutionTestIds: testIds,
94+
stdinStr: testIds.toString(),
9595
};
9696

9797
// Create the Python environment in which to execute the command.

0 commit comments

Comments
 (0)