File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
testing/testController/pytest Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
3131export type ShellOptions = ExecOptions & { throwOnStdErr ?: boolean } ;
Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments