forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroups.ts
More file actions
107 lines (92 loc) · 3.57 KB
/
groups.ts
File metadata and controls
107 lines (92 loc) · 3.57 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
// Experiment to check whether to always display the test explorer.
export enum AlwaysDisplayTestExplorerGroups {
control = 'AlwaysDisplayTestExplorer - control',
experiment = 'AlwaysDisplayTestExplorer - experiment'
}
// Experiment to check whether to show "Extension Survey prompt" or not.
export enum ShowExtensionSurveyPrompt {
control = 'ShowExtensionSurveyPrompt - control',
enabled = 'ShowExtensionSurveyPrompt - enabled'
}
// Experiment to check whether to enable re-load for web apps while debugging.
export enum WebAppReload {
control = 'Reload - control',
experiment = 'Reload - experiment'
}
// Experiment to use a local ZMQ kernel connection as opposed to starting a Jupyter server locally
export enum LocalZMQKernel {
control = 'LocalZMQKernel - control',
experiment = 'LocalZMQKernel - experiment'
}
// Experiment for supporting run by line in data science notebooks
export enum RunByLine {
control = 'RunByLine - control',
experiment = 'RunByLine - experiment'
}
/**
* Experiment to check whether to to use a terminal to generate the environment variables of activated environments.
*
* @export
* @enum {number}
*/
export enum UseTerminalToGetActivatedEnvVars {
control = 'UseTerminalToGetActivatedEnvVars - control',
experiment = 'UseTerminalToGetActivatedEnvVars - experiment'
}
// Dummy experiment added to validate metrics of A/B testing
export enum ValidateABTesting {
control = 'AA_testing - control',
experiment = 'AA_testing - experiment'
}
// Collect language server request timings.
export enum CollectLSRequestTiming {
control = 'CollectLSRequestTiming - control',
experiment = 'CollectLSRequestTiming - experiment'
}
// Collect Node language server request timings.
export enum CollectNodeLSRequestTiming {
control = 'CollectNodeLSRequestTiming - control',
experiment = 'CollectNodeLSRequestTiming - experiment'
}
// Determine if ipywidgets is enabled or not
export enum EnableIPyWidgets {
control = 'EnableIPyWidgets - control',
experiment = 'EnableIPyWidgets - experiment'
}
/*
* Experiment to check whether the extension should deprecate `python.pythonPath` setting
*/
export enum DeprecatePythonPath {
control = 'DeprecatePythonPath - control',
experiment = 'DeprecatePythonPath - experiment'
}
/*
* Experiment to turn on custom editor or VS Code Native Notebook API support.
*/
export enum NotebookEditorSupport {
control = 'CustomEditorSupport - control',
customEditorExperiment = 'CustomEditorSupport - experiment',
nativeNotebookExperiment = 'NativeNotebook - experiment'
}
// Experiment to remove the Kernel/Server Tooblar in the Interactive Window when running a local Jupyter Server.
// It doesn't make sense to have it there, the user can already change the kernel
// by changing the python interpreter on the status bar.
export enum RemoveKernelToolbarInInteractiveWindow {
experiment = 'RemoveKernelToolbarInInteractiveWindow'
}
// Experiment to offer switch to Pylance language server
export enum TryPylance {
experiment = 'tryPylance'
}
// Experiment for the content of the tip being displayed on first extension launch:
// interpreter selection tip, feedback survey or nothing.
export enum SurveyAndInterpreterTipNotification {
tipExperiment = 'pythonTipPromptWording',
surveyExperiment = 'pythonMailingListPromptWording'
}
// Experiment to show a prompt asking users to join python mailing list.
export enum JoinMailingListPromptVariants {
variant1 = 'pythonJoinMailingListVar1',
variant2 = 'pythonJoinMailingListVar2',
variant3 = 'pythonJoinMailingListVar3'
}