@@ -27,6 +27,7 @@ import {
27
27
IInterpreterSelector ,
28
28
IPythonPathUpdaterServiceFactory ,
29
29
IPythonPathUpdaterServiceManager ,
30
+ IRecommendedEnvironmentService ,
30
31
} from '../../client/interpreter/configuration/types' ;
31
32
import {
32
33
IActivatedEnvironmentLaunch ,
@@ -44,6 +45,7 @@ import { CondaInheritEnvPrompt } from '../../client/interpreter/virtualEnvs/cond
44
45
import { VirtualEnvironmentPrompt } from '../../client/interpreter/virtualEnvs/virtualEnvPrompt' ;
45
46
import { ServiceManager } from '../../client/ioc/serviceManager' ;
46
47
import { InterpreterPathCommand } from '../../client/interpreter/interpreterPathCommand' ;
48
+ import { RecommendedEnvironmentService } from '../../client/interpreter/configuration/recommededEnvironmentService' ;
47
49
48
50
suite ( 'Interpreters - Service Registry' , ( ) => {
49
51
test ( 'Registrations' , ( ) => {
@@ -64,6 +66,7 @@ suite('Interpreters - Service Registry', () => {
64
66
65
67
[ IPythonPathUpdaterServiceFactory , PythonPathUpdaterServiceFactory ] ,
66
68
[ IPythonPathUpdaterServiceManager , PythonPathUpdaterService ] ,
69
+ [ IRecommendedEnvironmentService , RecommendedEnvironmentService ] ,
67
70
[ IInterpreterSelector , InterpreterSelector ] ,
68
71
[ IInterpreterHelper , InterpreterHelper ] ,
69
72
[ IInterpreterComparer , EnvironmentTypeComparer ] ,
0 commit comments