forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgroups.ts
37 lines (30 loc) · 1.01 KB
/
groups.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Experiment to check whether to show "Extension Survey prompt" or not.
export enum ShowExtensionSurveyPrompt {
experiment = 'pythonSurveyNotification',
}
export enum ShowToolsExtensionPrompt {
experiment = 'pythonPromptNewToolsExt',
}
export enum TerminalEnvVarActivation {
experiment = 'pythonTerminalEnvVarActivation',
}
export enum DiscoveryUsingWorkers {
experiment = 'pythonDiscoveryUsingWorkers',
}
// Experiment to enable the new testing rewrite.
export enum EnableTestAdapterRewrite {
experiment = 'pythonTestAdapter',
}
// Experiment to recommend installing the tensorboard extension.
export enum RecommendTensobardExtension {
experiment = 'pythonRecommendTensorboardExt',
}
// Experiment to enable triggering venv creation when users install with `pip`
// in a global environment
export enum CreateEnvOnPipInstallTrigger {
experiment = 'pythonCreateEnvOnPipInstall',
}
// Experiment to enable running Python REPL using IW.
export enum EnableRunREPL {
experiment = 'pythonRunREPL',
}