File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ import { PythonVersionInfo } from './types';
32
32
// For each of those subdirectories there is a sub-namespace where
33
33
// those scripts' functions may be found.
34
34
//
35
+ // In some cases one or more types related to a script are exported
36
+ // from the same namespace in which the script's function is located.
37
+ // These types typically relate to the return type of "parse()".
38
+ //
35
39
// ignored scripts:
36
40
// * install_debugpy.py (used only for extension development)
37
41
// * ptvsd_launcher.py (used only for the old debug adapter)
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import { Uri } from 'vscode';
7
7
import { scripts as internalScripts } from '../../../common/process/internal' ;
8
8
import { Tests } from '../types' ;
9
9
10
+ // We expose these here as a convenience and to cut down on churn
11
+ // elsewhere in the code.
10
12
export type DiscoveredTests = internalScripts . testing_tools . DiscoveredTests ;
11
13
export type Test = internalScripts . testing_tools . Test ;
12
14
export type TestFolder = internalScripts . testing_tools . TestFolder ;
You can’t perform that action at this time.
0 commit comments