@@ -27,6 +27,7 @@ import {
2727 IInterpreterSelector ,
2828 IPythonPathUpdaterServiceFactory ,
2929 IPythonPathUpdaterServiceManager ,
30+ IRecommendedEnvironmentService ,
3031} from '../../client/interpreter/configuration/types' ;
3132import {
3233 IActivatedEnvironmentLaunch ,
@@ -44,6 +45,7 @@ import { CondaInheritEnvPrompt } from '../../client/interpreter/virtualEnvs/cond
4445import { VirtualEnvironmentPrompt } from '../../client/interpreter/virtualEnvs/virtualEnvPrompt' ;
4546import { ServiceManager } from '../../client/ioc/serviceManager' ;
4647import { InterpreterPathCommand } from '../../client/interpreter/interpreterPathCommand' ;
48+ import { RecommendedEnvironmentService } from '../../client/interpreter/configuration/recommededEnvironmentService' ;
4749
4850suite ( 'Interpreters - Service Registry' , ( ) => {
4951 test ( 'Registrations' , ( ) => {
@@ -64,6 +66,7 @@ suite('Interpreters - Service Registry', () => {
6466
6567 [ IPythonPathUpdaterServiceFactory , PythonPathUpdaterServiceFactory ] ,
6668 [ IPythonPathUpdaterServiceManager , PythonPathUpdaterService ] ,
69+ [ IRecommendedEnvironmentService , RecommendedEnvironmentService ] ,
6770 [ IInterpreterSelector , InterpreterSelector ] ,
6871 [ IInterpreterHelper , InterpreterHelper ] ,
6972 [ IInterpreterComparer , EnvironmentTypeComparer ] ,
0 commit comments