@@ -44,7 +44,6 @@ export interface IUnitTestSettings {
4444 pyTestArgs : string [ ] ;
4545 unittestEnabled : boolean ;
4646 unittestArgs : string [ ] ;
47- outputWindow : string ;
4847 cwd ?: string ;
4948}
5049export interface IPylintCategorySeverity {
@@ -96,7 +95,6 @@ export interface ILintingSettings {
9695 pylamaPath : string ;
9796 flake8Path : string ;
9897 pydocstylePath : string ;
99- outputWindow : string ;
10098 mypyEnabled : boolean ;
10199 mypyArgs : string [ ] ;
102100 mypyPath : string ;
@@ -107,7 +105,6 @@ export interface IFormattingSettings {
107105 autopep8Args : string [ ] ;
108106 yapfPath : string ;
109107 yapfArgs : string [ ] ;
110- outputWindow : string ;
111108}
112109export interface IAutoCompeteSettings {
113110 addBrackets : boolean ;
@@ -244,7 +241,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
244241 flake8Args : [ ] , flake8Enabled : false , flake8Path : 'flake' ,
245242 lintOnSave : false , maxNumberOfProblems : 100 ,
246243 mypyArgs : [ ] , mypyEnabled : false , mypyPath : 'mypy' ,
247- outputWindow : 'python' , pep8Args : [ ] , pep8Enabled : false , pep8Path : 'pep8' ,
244+ pep8Args : [ ] , pep8Enabled : false , pep8Path : 'pep8' ,
248245 pylamaArgs : [ ] , pylamaEnabled : false , pylamaPath : 'pylama' ,
249246 prospectorArgs : [ ] , prospectorEnabled : false , prospectorPath : 'prospector' ,
250247 pydocstyleArgs : [ ] , pydocstyleEnabled : false , pydocstylePath : 'pydocstyle' ,
@@ -288,7 +285,6 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
288285 // Support for travis.
289286 this . formatting = this . formatting ? this . formatting : {
290287 autopep8Args : [ ] , autopep8Path : 'autopep8' ,
291- outputWindow : 'python' ,
292288 provider : 'autopep8' ,
293289 yapfArgs : [ ] , yapfPath : 'yapf'
294290 } ;
@@ -339,7 +335,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
339335 nosetestArgs : [ ] , pyTestArgs : [ ] , unittestArgs : [ ] ,
340336 promptToConfigure : true , debugPort : 3000 ,
341337 nosetestsEnabled : false , pyTestEnabled : false , unittestEnabled : false ,
342- nosetestPath : 'nosetests' , pyTestPath : 'py.test' , outputWindow : 'Python Test Log'
338+ nosetestPath : 'nosetests' , pyTestPath : 'py.test'
343339 } as IUnitTestSettings ;
344340 }
345341 }
@@ -349,7 +345,6 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
349345 promptToConfigure : true ,
350346 debugPort : 3000 ,
351347 nosetestArgs : [ ] , nosetestPath : 'nosetest' , nosetestsEnabled : false ,
352- outputWindow : 'python' ,
353348 pyTestArgs : [ ] , pyTestEnabled : false , pyTestPath : 'pytest' ,
354349 unittestArgs : [ ] , unittestEnabled : false
355350 } ;
0 commit comments