File tree 2 files changed +6
-6
lines changed 2 files changed +6
-6
lines changed 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 { IActivatedEnvironmentLaunch , IComponentAdapter } from '../../interpreter/contracts' ;
6
+ import { 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 ) ;
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ function configure(): SetupOptions {
52
52
process . env . IS_MULTI_ROOT_TEST = IS_MULTI_ROOT_TEST . toString ( ) ;
53
53
54
54
// Check for a grep setting. Might be running a subset of the tests
55
- const defaultGrep = process . env . VSC_PYTHON_CI_TEST_GREP ;
55
+ const defaultGrep = 'ultiroot Linting' ;
56
56
// Check whether to invert the grep (i.e. test everything that doesn't include the grep).
57
57
const invert = ( process . env . VSC_PYTHON_CI_TEST_INVERT_GREP || '' ) . length > 0 ;
58
58
You can’t perform that action at this time.
0 commit comments