We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2090f23 commit 81c5971Copy full SHA for 81c5971
src/client/common/process/types.ts
@@ -25,7 +25,7 @@ export type SpawnOptions = ChildProcessSpawnOptions & {
25
throwOnStdErr?: boolean;
26
extraVariables?: NodeJS.ProcessEnv;
27
outputChannel?: OutputChannel;
28
- pytestExecutionTestIds?: string[];
+ stdinStr?: string;
29
};
30
31
export type ShellOptions = ExecOptions & { throwOnStdErr?: boolean };
src/client/testing/testController/pytest/pytestExecutionAdapter.ts
@@ -91,7 +91,7 @@ export class PytestTestExecutionAdapter implements ITestExecutionAdapter {
91
TEST_PORT: this.testServer.getPort().toString(),
92
},
93
outputChannel: this.outputChannel,
94
- pytestExecutionTestIds: testIds,
+ stdinStr: testIds.toString(),
95
96
97
// Create the Python environment in which to execute the command.
0 commit comments