You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* update to use latest api
* config changes for multiroot workspace
* linting support with multi roots
* multi root support for formatters
* determine workspace root path
* revert change
* support multiple configs per workspace folder
* modify formatters to use resource specific settings
* modified installer to pass resource for workspace resolution
* null test in installer
* canges to config settings to support multiroot workspace
* changes to code refactoring to support workspace symbols
* oops
* modified to settings are resolved using document uri
* unit tests for multi root support
* fix unittests for multiroot
* exclude files
* add new line
* config changes for multiroot workspace
* new lines and enabled multi root linter tests
* fix sys variables
* added unit test to resolve ${workspaceRoot} in settings.json
* #1228 workspace symbols with multiroot support
* fix test
* added some data for workspace symbol tests
* data for unit tests
* fixed to add support for multit roots with unit tests
* account for mutiroot files in sub directory
* disable all but multiroot tests
* fixed tests
* fix tests
* test where failing
* properly determine root workspace
* fix pytest unit test
* delete files
* add awaiter
* use a path that works on multiple os
* fixes
* uncomment
* invert
* debug statements
* use default workspace
* reverted unwanted changes
* oops
* test unittests only
* more logging
* partial fixes to unit tests
* run all tests
* changes not to set paths for shebang tests
* remove comments
* update settings only if necessary
* fix test
* include files for tests
* Fixed travis tests for multi root workspace symbols (#1306)
* added logging
* more logging
* yay
* fixed
* more fixes
* fix tests
* removed logging
* enable all tests
* uncommented
* Added brackets around print statements (for p3)
* use resource when getting settings
Copy file name to clipboardExpand all lines: src/client/unittests/configuration.ts
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,6 @@ import * as unittest from './unittest/testConfigurationManager';
9
9
import{getSubDirectories}from'../common/utils';
10
10
import*aspathfrom'path';
11
11
12
-
constsettings=PythonSettings.getInstance();
13
-
14
12
functionpromptToEnableAndConfigureTestFramework(outputChannel: vscode.OutputChannel,messageToDisplay: string='Select a test framework/tool to enable',enableOnly: boolean=false): Thenable<any>{
15
13
constitems=[{
16
14
label: 'unittest',
@@ -76,8 +74,9 @@ function promptToEnableAndConfigureTestFramework(outputChannel: vscode.OutputCha
76
74
// Cuz we don't want the test engine (in main.ts file - tests get discovered when config changes are detected)
77
75
// to start discovering tests when tests haven't been configured properly
0 commit comments