Skip to content

Commit

Permalink
switch to stdinStr
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed May 24, 2023
1 parent 2090f23 commit 81c5971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/common/process/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type SpawnOptions = ChildProcessSpawnOptions & {
throwOnStdErr?: boolean;
extraVariables?: NodeJS.ProcessEnv;
outputChannel?: OutputChannel;
pytestExecutionTestIds?: string[];
stdinStr?: string;
};

export type ShellOptions = ExecOptions & { throwOnStdErr?: boolean };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class PytestTestExecutionAdapter implements ITestExecutionAdapter {
TEST_PORT: this.testServer.getPort().toString(),
},
outputChannel: this.outputChannel,
pytestExecutionTestIds: testIds,
stdinStr: testIds.toString(),
};

// Create the Python environment in which to execute the command.
Expand Down

0 comments on commit 81c5971

Please sign in to comment.