File tree Expand file tree Collapse file tree 2 files changed +5
-14
lines changed
src/client/common/process Expand file tree Collapse file tree 2 files changed +5
-14
lines changed Original file line number Diff line number Diff line change @@ -275,15 +275,6 @@ jobs:
275
275
working-directory : ${{ env.special-working-directory }}
276
276
if : matrix.test-suite == 'multi-workspace'
277
277
278
- - name : Run multi-workspace tests
279
- env :
280
- CI_PYTHON_VERSION : ${{ matrix.python }}
281
-
282
- with :
283
- run : npm run testMultiWorkspace
284
- working-directory : ${{ env.special-working-directory }}
285
- if : matrix.test-suite == 'multi-workspace'
286
-
287
278
- name : Run debugger tests
288
279
env :
289
280
CI_PYTHON_VERSION : ${{ matrix.python }}
Original file line number Diff line number Diff line change 3
3
import { inject , injectable } from 'inversify' ;
4
4
5
5
import { IEnvironmentActivationService } from '../../interpreter/activation/types' ;
6
- import { IComponentAdapter } from '../../interpreter/contracts' ;
6
+ import { IActivatedEnvironmentLaunch , IComponentAdapter } from '../../interpreter/contracts' ;
7
7
import { IServiceContainer } from '../../ioc/types' ;
8
8
import { sendTelemetryEvent } from '../../telemetry' ;
9
9
import { EventName } from '../../telemetry/constants' ;
@@ -52,10 +52,10 @@ export class PythonExecutionFactory implements IPythonExecutionFactory {
52
52
public async create ( options : ExecutionFactoryCreationOptions ) : Promise < IPythonExecutionService > {
53
53
let { pythonPath } = options ;
54
54
if ( ! pythonPath || pythonPath === 'python' ) {
55
- // const activatedEnvLaunch = this.serviceContainer.get<IActivatedEnvironmentLaunch>(
56
- // IActivatedEnvironmentLaunch,
57
- // );
58
- // await activatedEnvLaunch.selectIfLaunchedViaActivatedEnv();
55
+ const activatedEnvLaunch = this . serviceContainer . get < IActivatedEnvironmentLaunch > (
56
+ IActivatedEnvironmentLaunch ,
57
+ ) ;
58
+ await activatedEnvLaunch . selectIfLaunchedViaActivatedEnv ( ) ;
59
59
// If python path wasn't passed in, we need to auto select it and then read it
60
60
// from the configuration.
61
61
const interpreterPath = this . interpreterPathExpHelper . get ( options . resource ) ;
You can’t perform that action at this time.
0 commit comments