forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
82 lines (77 loc) · 3.88 KB
/
constants.ts
File metadata and controls
82 lines (77 loc) · 3.88 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
export const PythonLanguage = { language: 'python' };
export namespace Commands {
export const Set_Interpreter = 'python.setInterpreter';
export const Exec_In_Terminal = 'python.execInTerminal';
export const Exec_Selection_In_Terminal = 'python.execSelectionInTerminal';
export const Exec_Selection_In_Django_Shell = 'python.execSelectionInDjangoShell';
export const Tests_View_UI = 'python.viewTestUI';
export const Tests_Picker_UI = 'python.selectTestToRun';
export const Tests_Picker_UI_Debug = 'python.selectTestToDebug';
export const Tests_Discover = 'python.discoverTests';
export const Tests_Run_Failed = 'python.runFailedTests';
export const Sort_Imports = 'python.sortImports';
export const Tests_Run = 'python.runtests';
export const Tests_Debug = 'python.debugtests';
export const Tests_Ask_To_Stop_Test = 'python.askToStopUnitTests';
export const Tests_Ask_To_Stop_Discovery = 'python.askToStopUnitTestDiscovery';
export const Tests_Stop = 'python.stopUnitTests';
export const Tests_ViewOutput = 'python.viewTestOutput';
export const Tests_Select_And_Run_Method = 'python.selectAndRunTestMethod';
export const Tests_Select_And_Debug_Method = 'python.selectAndDebugTestMethod';
export const Tests_Select_And_Run_File = 'python.selectAndRunTestFile';
export const Tests_Run_Current_File = 'python.runCurrentTestFile';
export const Refactor_Extract_Variable = 'python.refactorExtractVariable';
export const Refaactor_Extract_Method = 'python.refactorExtractMethod';
export const Update_SparkLibrary = 'python.updateSparkLibrary';
export const Build_Workspace_Symbols = 'python.buildWorkspaceSymbols';
export const Start_REPL = 'python.startREPL';
export namespace Jupyter {
export const Get_All_KernelSpecs_For_Language = 'jupyter.getAllKernelSpecsForLanguage';
export const Get_All_KernelSpecs = 'jupyter.getAllKernelSpecs';
export const Select_Kernel = 'jupyter.selectKernel';
export const Kernel_Options = 'jupyter.kernelOptions';
export const StartKernelForKernelSpeck = 'jupyter.sartKernelForKernelSpecs';
export const ExecuteRangeInKernel = 'jupyter.execRangeInKernel';
export const ExecuteSelectionOrLineInKernel = 'jupyter.runSelectionLine';
export namespace Cell {
export const ExecuteCurrentCell = 'jupyter.execCurrentCell';
export const ExecuteCurrentCellAndAdvance = 'jupyter.execCurrentCellAndAdvance';
export const AdcanceToCell = 'jupyter.advanceToNextCell';
export const DisplayCellMenu = 'jupyter.displayCellMenu';
export const GoToPreviousCell = 'jupyter.gotToPreviousCell';
export const GoToNextCell = 'jupyter.gotToNextCell';
}
export namespace Kernel {
export const Kernel_Interrupt = 'jupyter.kernelInterrupt';
export const Kernel_Restart = 'jupyter.kernelRestart';
export const Kernel_Shut_Down = 'jupyter.kernelShutDown';
export const Kernel_Details = 'jupyter.kernelDetails';
}
}
}
export namespace Octicons {
export const Test_Pass = '$(check)';
export const Test_Fail = '$(alert)';
export const Test_Error = '$(x)';
export const Test_Skip = '$(circle-slash)';
}
export const Button_Text_Tests_View_Output = 'View Output';
export namespace Text {
export const CodeLensRunUnitTest = 'Run Test';
export const CodeLensDebugUnitTest = 'Debug Test';
}
export namespace Delays {
// Max time to wait before aborting the generation of code lenses for unit tests
export const MaxUnitTestCodeLensDelay = 5000;
}
export namespace LinterErrors {
export namespace pylint {
export const InvalidSyntax = 'E0001';
}
export namespace prospector {
export const InvalidSyntax = 'F999';
}
export namespace flake8 {
export const InvalidSyntax = 'E999';
}
}