Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve logging for cases where test adapter fails with file (python) not found #10233

Closed
SonOfDiablo opened this issue Feb 20, 2020 · 16 comments
Labels
area-testing bug Issue identified by VS Code Team member as probable bug

Comments

@SonOfDiablo
Copy link

Environment data

  • VS Code version: 1.42.1 (user setup)
  • Extension version (available under the Extensions sidebar): 2020.2.63990
  • OS and version: Windows_NT x64 10.0.18363
  • Python version: 3.8.0
  • Type of virtual environment used (N/A | venv | virtualenv | conda | ...): N/A
  • Relevant/affected Python packages and their versions: pytest 5.3.5
  • Jedi or Language Server? (i.e. what is "python.jediEnabled" set to; more info How to update the language server to the latest stable version #3977): Language Server
  • Value of the python.languageServer setting: Microsoft

Expected behaviour

Tests would be discovered and the Tests tab would be populated.

Actual behaviour

An error is thrown by pytest:

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Path\To\Project -s --cache-clear Tests
Test Discovery failed: 
Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT

Steps to reproduce:

  1. Open a Python project with a folder containing tests
  2. Run Discover Tests
My project structure
ProjectName/
┣━ .pytest_cache/
┃  ┣━ v/
┃  ┃  ┗━ cache/
┃  ┃  ┃  ┣━ nodeids
┃  ┃  ┃  ┗━ stepwise
┃  ┣━ .gitignore
┃  ┣━ CACHEDIR.TAG
┃  ┗━ README.md
┣━ .vscode/
┃  ┗━ settings.json
┣━ Tests/
┃  ┣━ Support/
┃  ┃  ┣━ Schemas/
┃  ┃  ┃  ┣━ test-data1.json
┃  ┃  ┃  ┣━ test-data2.json
┃  ┃  ┃  ┣━ test-data3.json
┃  ┃  ┃  ┗━ test-data4.json
┃  ┃  ┣━ __pycache__/
┃  ┃  ┃  ┗━ assertions.cpython-38.pyc
┃  ┃  ┗━ assertions.py
┃  ┣━ __pycache__/
┃  ┃  ┣━ test_Collections.cpython-38-pytest-5.3.5.pyc
┃  ┃  ┗━ __init__.cpython-38.pyc
┃  ┣━ pytest.ini
┃  ┣━ test_Collections.py
┃  ┗━ __init__.py
┣━ __pycache__/
┃  ┗━ ProjectName.cpython-38.pyc
┗━ ProjectName.py

The test discovery worked fine yesterday, and works just fine when manually running

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests

outside of VS Code.

Logs

Output for Python in the Output panel (ViewOutput, change the drop-down the upper-right of the Output panel to Python)

User belongs to experiment group 'ShowPlayIcon - start'
User belongs to experiment group 'ShowExtensionSurveyPrompt - control'
User belongs to experiment group 'DebugAdapterFactory - experiment'
User belongs to experiment group 'PtvsdWheels37 - experiment'
User belongs to experiment group 'Reload - control'
User belongs to experiment group 'UseTerminalToGetActivatedEnvVars - control'
User belongs to experiment group 'WebHostNotebook - control'
> conda --version
> pyenv root
> python3.7 -c "import sys;print(sys.executable)"
> python3.6 -c "import sys;print(sys.executable)"
> python3 -c "import sys;print(sys.executable)"
> python2 -c "import sys;print(sys.executable)"
> python -c "import sys;print(sys.executable)"
> py -3.7 -c "import sys;print(sys.executable)"
> py -3.6 -c "import sys;print(sys.executable)"
> py -3 -c "import sys;print(sys.executable)"
> py -2 -c "import sys;print(sys.executable)"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
Starting Microsoft Python language server.
> ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> conda --version
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
##########Linting Output - pylint##########

--------------------------------------------------------------------

Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

Output from Console under the Developer Tools panel (toggle Developer Tools on under Help; turn on source maps to make any tracebacks be useful by running Enable source map support for extension debugging)

abstractExtensionService.ts:400 [ms-vscode.powershell]: Command `workbench.action.debug.start` appears multiple times in the `commands` section.
TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope source.sql.
Old grammar file: file:///d%3A/Programs/Microsoft%20VS%20Code/resources/app/extensions/sql/syntaxes/sql.tmLanguage.json.
New grammar file: file:///c%3A/Users/USERNAME/.vscode/extensions/mtxr.sqltools-0.21.6/language/sql.tmLanguage.json
register @ TMScopeRegistry.ts:45
7abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
7abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
extensionHost.ts:211 Extension Host
extensionHost.ts:212 Debugger attached.
extensionHost.ts:211 Extension Host
extensionHost.ts:212 Debugger attached.
console.ts:137 [Extension Host] filesize is active
14[Violation] Added non-passive event listener to a scroll-blocking <some> event. Consider marking event handler as 'passive' to make the page more responsive. See <URL>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:34: Display locator refreshing progress, Class name = p, completed in 4ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 22ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 1ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 26ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 182ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 67ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 61ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 60ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 56ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Register Interpreter Watcher, Class name = p, completed in 51ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 55ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 49ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 65ms, Arg 1: <Uri:tasks>, Return Value: <Return value cannot be serialized for logging>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: getActivatedEnvironmentVariables, Class name = S, completed in 229ms, Arg 1: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 17ms, Arg 1: <Uri:tasks>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 23ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Register Interpreter Watcher, Class name = p, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 32ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: autoSelectInterpreter, Class name = f, completed in 30ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 13ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:35: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: <Uri:tasks>, Return Value: <Return value cannot be serialized for logging>
2console.ts:137 [Extension Host] (node:7828) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 22ms, Arg 1: <Uri:tasks>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 28ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 27ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 20ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 21ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
3console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 19ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 19ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters in CacheableLocatorService, Class name = g, completed in 18ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 2549ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 45ms, Arg 1: <Uri:tasks>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Get Interpreters, Class name = m, completed in 34ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:37: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:42: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, , Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6444ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6435ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6433ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6432ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6424ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: setGlobalInterpreter, Class name = f, completed in 6422ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8759ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8755ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8776ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8777ms, Arg 1: <Uri:tasks>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:43: autoSelectInterpreter, Class name = f, completed in 8773ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\Windows\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\LiveKernelReports'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ModemLogs'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\Windows\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\Prefetch'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ServiceState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagerr.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagwrn.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\LiveKernelReports'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ModemLogs'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\Prefetch'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ServiceState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagerr.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagwrn.xml'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\Windows\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\Configuration'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\DriverState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\MsDtc'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\SleepStudy'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\WDI'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\config'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\ias'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\networklist'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\Windows\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\sru'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\Configuration'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\DriverState'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\MsDtc'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\SleepStudy'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\WDI'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\config'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\ias'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\networklist'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: failure while getting file type for "C:\WINDOWS\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\sru'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, extension-output-#4
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: setGlobalInterpreter, Class name = f, completed in 7830ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: setGlobalInterpreter, Class name = f, completed in 7827ms, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10414ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10405ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10411ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10407ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:45: Detection of Python Interpreter for Command py and args -3.6 failed as file Python 3.6 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10438ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10435ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10447ms, Arg 1: <Uri:tasks>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: autoSelectInterpreter, Class name = f, completed in 10442ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: getActivatedEnvironmentVariables, Class name = S, completed in 47ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: getActivatedEnvironmentVariables, Class name = S, completed in 22ms, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:45: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
log.ts:191  WARN UNRESPONSIVE extension host, 'Gruntfuggly.todo-tree' took 23% of 3642.874ms, saved PROFILE here: 'C:\Users\USERNAME\AppData\Local\Temp\exthost-08dfde.cpuprofile' (20) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: Detection of Python Interpreter for Command python3 and args  failed as file  does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\Spotify.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\Spotify.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\Spotify.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:46: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
4console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:46: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:47: Detection of Python Interpreter for Command py and args -3.7 failed as file Python 3.7 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:47: Detection of Python Interpreter for Command py and args -2 failed as file Python 2 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
6console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 1495ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by CurrentPathService are of count 3
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 81ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, tasks
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: getActivatedEnvironmentVariables, Class name = S, completed in 8ms, Arg 1: <Uri:tasks>, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, tasks
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Get language server folder name, Class name = f, completed in 24ms, Arg 1: <Uri:tasks>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
2console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: getActivatedEnvironmentVariables, Class name = S, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Starting Language Server, Class name = f, completed in 1957ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: cwd: ""
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: cwd: ""
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: [object Object]. Shell identified as undefined 
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell path identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: [object Object]. Shell identified as powershell 
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Shell identified as 'powershell'
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 4ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists KeyPrefix=Cache_Method_Output_b.getCondaInfo-Args=
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Get Interpreters, Class name = m, completed in 24ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to parse discovered Test Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT    at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19)    at onErrorNT (internal/child_process.js:456:16)    at processTicksAndRejections (internal/process/task_queues.js:84:9)    at runNextTicks (internal/process/task_queues.js:59:3)    at processTimers (internal/timers.js:472:9) {  errno: 'ENOENT',  code: 'ENOENT',  syscall: 'spawn C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  spawnargs: [    'c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\testing_tools\\run_adapter.py',    'discover',    'pytest',    '--',    '--rootdir',    'd:\\Documents\\Scripts\\python\\ProjectName',    '-s',    '--cache-clear',    'Tests'  ]}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: getActivatedEnvironmentVariables, Class name = S, completed in 5ms, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
2console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:49: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Socket.<anonymous> (internal/child_process.js:430:11)    at Socket.emit (events.js:200:13)    at Pipe.<anonymous> (net.js:586:12) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.63990\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: Hide locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:54:49: All locators have completed locating, Class name = p, completed in 1ms, , Return Value: undefined
notificationsAlerts.ts:40 Test discovery error, please check the configuration settings for the tests.
onDidNotificationChange @ notificationsAlerts.ts:40
(anonymous) @ notificationsAlerts.ts:26
fire @ event.ts:582
addNotification @ notifications.ts:171
notify @ notificationService.ts:101
(anonymous) @ mainThreadMessageService.ts:83
_showMessage @ mainThreadMessageService.ts:44
$showMessage @ mainThreadMessageService.ts:38
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Error Python Extension: 2020-02-20 19:54:52: Python Extension: displayDiscoverStatus TypeError: Cannot read property 'uri' of undefined    at rootDirectory (c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.63990\src\client\testing\common\managers\baseTestManager.ts:185:93)
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] [vscode-icons] v10.0.0 activated!
log.ts:191  WARN UNRESPONSIVE extension host, 'acarreiro.calculate' took 31% of 4797.868ms, saved PROFILE here: 'C:\Users\USERNAME\AppData\Local\Temp\exthost-87361d.cpuprofile' (22) [{…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}, {…}]
console.ts:137 [Extension Host] No editors associated with document: d:\Documents\Scripts\python\ProjectName\ProjectName.py
t.log @ console.ts:137
$logExtensionHostMessage @ mainThreadConsole.ts:39
_doInvokeHandler @ rpcProtocol.ts:398
_invokeHandler @ rpcProtocol.ts:383
_receiveRequest @ rpcProtocol.ts:299
_receiveOneMessage @ rpcProtocol.ts:226
(anonymous) @ rpcProtocol.ts:101
fire @ event.ts:582
fire @ ipc.net.ts:453
_receiveMessage @ ipc.net.ts:733
(anonymous) @ ipc.net.ts:592
fire @ event.ts:582
acceptChunk @ ipc.net.ts:239
(anonymous) @ ipc.net.ts:200
t @ ipc.net.ts:28
emit @ events.js:200
addChunk @ _stream_readable.js:294
readableAddChunk @ _stream_readable.js:275
Readable.push @ _stream_readable.js:210
onStreamRead @ internal/stream_base_commons.js:166
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\ProjectName.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:04: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-20 19:55:20: Cached data exists getEnvironmentVariables, extension-output-#4
@SonOfDiablo SonOfDiablo added triage-needed Needs assignment to the proper sub-team bug Issue identified by VS Code Team member as probable bug labels Feb 20, 2020
@karthiknadig karthiknadig self-assigned this Feb 20, 2020
@ghost ghost removed the triage-needed Needs assignment to the proper sub-team label Feb 20, 2020
@karthiknadig
Copy link
Member

@SonOfDiablo Can you confirm that it works with extension version 2020.2.63072?

@SonOfDiablo
Copy link
Author

That doesn't work either.

@karthiknadig
Copy link
Member

@SonOfDiablo would it be possible to provide a minimal repro for this. I am not able to repro it locally.

@SonOfDiablo
Copy link
Author

@karthiknadig I'm not quite sure what you mean?
I don't do anything special. I just start VSCode > Wait for everything to load > Select "Open Folder" under "File" and Open the folder containing my python project > Wait for things to load > Gets Error message.

It should also be noted that it's happening with another project I worked on some time back, which also had no issues until now.

When asking me to provide "Minimal repro" do you mean example files/code?

@dmig-alarstudios
Copy link

Here is my output for this error. It fails somewhere inside the /home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/testing_tools/run_adapter.py:

python /home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/testing_tools/run_adapter.py discover pytest -- --rootdir /home/dmig/workspace/marty/services -s --cache-clear /home/dmig/workspace/marty/services
Test Discovery failed: 
Error: ============================= test session starts ==============================
platform linux -- Python 3.8.1, pytest-5.3.5, py-1.8.0, pluggy-0.13.1
rootdir: /home/dmig/workspace/marty/services, inifile: pytest.ini
plugins: asyncio-0.10.0, pylint-0.15.0, cov-2.8.1
collected 0 items / 1 error
--------------------------------------------------------------------------------
Linting files
.INTERNALERROR> Traceback (most recent call last):
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/_pytest/main.py", line 197, in wrap_session
INTERNALERROR>     session.exitstatus = doit(config, session) or 0
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/_pytest/main.py", line 246, in _main
INTERNALERROR>     config.hook.pytest_collection(session=session)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/hooks.py", line 286, in __call__
INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/manager.py", line 93, in _hookexec
INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/manager.py", line 84, in <lambda>
INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 208, in _multicall
INTERNALERROR>     return outcome.get_result()
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 80, in get_result
INTERNALERROR>     raise ex[1].with_traceback(ex[2])
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 187, in _multicall
INTERNALERROR>     res = hook_impl.function(*args)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/_pytest/main.py", line 256, in pytest_collection
INTERNALERROR>     return session.perform_collect()
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/_pytest/main.py", line 464, in perform_collect
INTERNALERROR>     hook.pytest_collection_finish(session=self)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/hooks.py", line 286, in __call__
INTERNALERROR>     return self._hookexec(self, self.get_hookimpls(), kwargs)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/manager.py", line 93, in _hookexec
INTERNALERROR>     return self._inner_hookexec(hook, methods, kwargs)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/manager.py", line 84, in <lambda>
INTERNALERROR>     self._inner_hookexec = lambda hook, methods, kwargs: hook.multicall(
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 208, in _multicall
INTERNALERROR>     return outcome.get_result()
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 80, in get_result
INTERNALERROR>     raise ex[1].with_traceback(ex[2])
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pluggy/callers.py", line 187, in _multicall
INTERNALERROR>     res = hook_impl.function(*args)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/3.8.1/envs/marty-services-3.8.1/lib/python3.8/site-packages/pytest_pylint/plugin.py", line 174, in pytest_collection_finish
INTERNALERROR>     result = lint.Run(args_list, reporter=reporter, do_exit=False)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/lint.py", line 1731, in __init__
INTERNALERROR>     linter.check(args)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/lint.py", line 1004, in check
INTERNALERROR>     self._do_check(files_or_modules)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/lint.py", line 1165, in _do_check
INTERNALERROR>     self.check_astroid_module(ast_node, walker, rawcheckers, tokencheckers)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/lint.py", line 1252, in check_astroid_module
INTERNALERROR>     walker.walk(ast_node)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/utils/ast_walker.py", line 77, in walk
INTERNALERROR>     self.walk(child)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/utils/ast_walker.py", line 74, in walk
INTERNALERROR>     callback(astroid)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/checkers/imports.py", line 534, in visit_importfrom
INTERNALERROR>     self._add_imported_module(node, "%s.%s" % (imported_module.name, name))
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/pylint/checkers/imports.py", line 807, in _add_imported_module
INTERNALERROR>     importedmodname = modutils.get_module_part(importedmodname, module_file)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/modutils.py", line 485, in get_module_part
INTERNALERROR>     file_from_modpath(
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/modutils.py", line 383, in file_from_modpath
INTERNALERROR>     return file_info_from_modpath(modpath, path, context_file).location
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/modutils.py", line 431, in file_info_from_modpath
INTERNALERROR>     return _spec_from_modpath(modpath, path, context)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/modutils.py", line 650, in _spec_from_modpath
INTERNALERROR>     found_spec = spec.find_spec(modpath, [context])
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/interpreter/_import/spec.py", line 334, in find_spec
INTERNALERROR>     finder, spec = _find_spec_with_path(
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/interpreter/_import/spec.py", line 298, in _find_spec_with_path
INTERNALERROR>     spec = finder.find_module(modname, module_parts, processed, submodule_path)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/interpreter/_import/spec.py", line 190, in find_module
INTERNALERROR>     file_type, filename, path = _search_zip(module_parts, self._zipimporters)
INTERNALERROR>   File "/home/dmig/.pyenv/versions/marty-services-3.8.1/lib/python3.8/site-packages/astroid/interpreter/_import/spec.py", line 279, in _search_zip
INTERNALERROR>     found = importer.find_module(modpath[0])
INTERNALERROR>   File "<frozen importlib._bootstrap_external>", line 489, in _find_module_shim
INTERNALERROR> ImportWarning: Not importing directory /home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/lib: missing __init__

=============================== 1 error in 2.31s ===============================

Traceback (most recent call last):
  File "/home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/testing_tools/run_adapter.py", line 22, in <module>
    main(tool, cmd, subargs, toolargs)
  File "/home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/testing_tools/adapter/__main__.py", line 100, in main
    parents, result = run(toolargs, **subargs)
  File "/home/dmig/.vscode-insiders/extensions/ms-python.python-2020.3.64983-dev/pythonFiles/testing_tools/adapter/pytest/_discovery.py", line 44, in discover
    raise Exception("pytest discovery failed (exit code {})".format(ec))
Exception: pytest discovery failed (exit code 3)

@SonOfDiablo
Copy link
Author

@dmig-alarstudios I think your issue is different from mine.
All I get in "Python test Log" is the following:

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
Test Discovery failed: 
Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT

Seems like my issue is that it can't execute python.exe for some reason...

@karthiknadig
Copy link
Member

@SonOfDiablo Directory structure could be helpful. Can you check if the path that the error prints out is correct? I am wondering if it is somehow messing up the path when trying to spawn. I am asking about this path:
C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe

@SonOfDiablo
Copy link
Author

I already posted the structure in the original post, but here it is again:

ProjectName/
┣━ .pytest_cache/
┃  ┣━ v/
┃  ┃  ┗━ cache/
┃  ┃  ┃  ┣━ nodeids
┃  ┃  ┃  ┗━ stepwise
┃  ┣━ .gitignore
┃  ┣━ CACHEDIR.TAG
┃  ┗━ README.md
┣━ .vscode/
┃  ┗━ settings.json
┣━ Tests/
┃  ┣━ Support/
┃  ┃  ┣━ Schemas/
┃  ┃  ┃  ┣━ test-data1.json
┃  ┃  ┃  ┣━ test-data2.json
┃  ┃  ┃  ┣━ test-data3.json
┃  ┃  ┃  ┗━ test-data4.json
┃  ┃  ┣━ __pycache__/
┃  ┃  ┃  ┗━ assertions.cpython-38.pyc
┃  ┃  ┗━ assertions.py
┃  ┣━ __pycache__/
┃  ┃  ┣━ test_Collections.cpython-38-pytest-5.3.5.pyc
┃  ┃  ┗━ __init__.cpython-38.pyc
┃  ┣━ pytest.ini
┃  ┣━ test_Collections.py
┃  ┗━ __init__.py
┣━ __pycache__/
┃  ┗━ ProjectName.cpython-38.pyc
┗━ ProjectName.py

And yes the path to python is correct.
However my username contains a _ could that be messing up? (not that I think that is the issue as it was working before)

@karthiknadig
Copy link
Member

@SonOfDiablo sorry i missed that. Can you enable source Maps using this command?
image
Reload and try discovery again. It should fail but the logs will have more helpful information. Can you share the Console logs again.

@SonOfDiablo
Copy link
Author

Python Output:

User belongs to experiment group 'ShowPlayIcon - start'
User belongs to experiment group 'ShowExtensionSurveyPrompt - control'
User belongs to experiment group 'DebugAdapterFactory - experiment'
User belongs to experiment group 'PtvsdWheels37 - experiment'
User belongs to experiment group 'Reload - control'
User belongs to experiment group 'UseTerminalToGetActivatedEnvVars - control'
User belongs to experiment group 'WebHostNotebook - control'
> conda --version
> pyenv root
> python3.7 -c "import sys;print(sys.executable)"
> python3.6 -c "import sys;print(sys.executable)"
> python3 -c "import sys;print(sys.executable)"
> python2 -c "import sys;print(sys.executable)"
> python -c "import sys;print(sys.executable)"
> py -3.7 -c "import sys;print(sys.executable)"
> py -3.6 -c "import sys;print(sys.executable)"
> py -3 -c "import sys;print(sys.executable)"
> py -2 -c "import sys;print(sys.executable)"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
Starting Microsoft Python language server.
> ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
cwd: d:\Documents\Scripts\python\ProjectName
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
cwd: ""
> conda --version
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
> ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
##########Linting Output - pylint##########

--------------------------------------------------------------------

Your code has been rated at 10.00/10 (previous run: 10.00/10, +0.00)

Python Test Log Output:

python c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
Test Discovery failed: 
Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT

Developer Tools Console:

abstractExtensionService.ts:400 [ms-vscode.powershell]: Command `workbench.action.debug.start` appears multiple times in the `commands` section.
TMScopeRegistry.ts:45 Overwriting grammar scope name to file mapping for scope source.sql.
Old grammar file: file:///d%3A/Programs/Microsoft%20VS%20Code/resources/app/extensions/sql/syntaxes/sql.tmLanguage.json.
New grammar file: file:///c%3A/Users/USERNAME/.vscode/extensions/mtxr.sqltools-0.21.6/language/sql.tmLanguage.json
register @ TMScopeRegistry.ts:45
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: blade
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
abstractExtensionService.ts:396 [idleberg.svg-icons]: Unknown language in `contributes.svg-icons.language`. Provided value: vue-html
_logMessageInConsole @ abstractExtensionService.ts:396
console.ts:137 [Extension Host] (node:30080) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
console.ts:137 [Extension Host] (node:30080) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
console.ts:137 [Extension Host] filesize is active
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 3ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 8ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 10ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 4ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 5ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 118ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 59ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 57ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 56ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 51ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Register Interpreter Watcher, Class name = p, completed in 48ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 52ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 45ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 35ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Build the workspace interpreter watcher, Class name = h, completed in 62ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: autoSelectInterpreter, Class name = f, completed in 7ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: getActivatedEnvironmentVariables, Class name = C, completed in 158ms, has a falsy return value, Arg 1: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Rule = settings, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: autoSelectInterpreter, Class name = f, completed in 16ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Build the workspace interpreter watcher, Class name = h, completed in 5ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 5ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 8ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters, Class name = m, completed in 362ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Get Interpreters, Class name = m, completed in 12ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:44: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Get Interpreters in CacheableLocatorService, Class name = g, completed in 0ms, has a truthy return value, , Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: setGlobalInterpreter, Class name = f, completed in 2114ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: setGlobalInterpreter, Class name = f, completed in 2113ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: setGlobalInterpreter, Class name = f, completed in 2112ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: setGlobalInterpreter, Class name = f, completed in 2076ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: autoSelectInterpreter, Class name = f, completed in 2331ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: autoSelectInterpreter, Class name = f, completed in 2331ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: autoSelectInterpreter, Class name = f, completed in 2331ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: autoSelectInterpreter, Class name = f, completed in 2332ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2591ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2589ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:46: autoSelectInterpreter, Class name = f, completed in 2601ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: getActivatedEnvironmentVariables, Class name = C, completed in 5ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: getActivatedEnvironmentVariables, Class name = C, completed in 4ms, has a falsy return value, Arg 1: undefined, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 3: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import jupyter"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import notebook"
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\Windows\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\LiveKernelReports'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ModemLogs'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\Windows\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\Prefetch'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\ServiceState'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagerr.xml'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\Windows\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\diagwrn.xml'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\LiveKernelReports" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\LiveKernelReports'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\LiveKernelReports'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\ModemLogs" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ModemLogs'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ModemLogs'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\Prefetch" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\Prefetch'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\Prefetch'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\ServiceState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\ServiceState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\ServiceState'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\diagwrn.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagwrn.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagwrn.xml'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\diagerr.xml" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\diagerr.xml'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\diagerr.xml'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\Configuration'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\DriverState'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\MsDtc'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\SleepStudy'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\WDI'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\config'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\ias'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\networklist'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\Windows\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\system32\\sru'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\Configuration" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\Configuration'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\Configuration'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\DriverState" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\DriverState'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\DriverState'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\MsDtc" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\MsDtc'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\MsDtc'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\SleepStudy" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\SleepStudy'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\SleepStudy'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\WDI" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\WDI'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\WDI'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\config" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\config'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\config'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\ias" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\ias'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\ias'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\networklist" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\networklist'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\networklist'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\system32\sru" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\system32\sru'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\system32\\sru'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\flute.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\flute.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\flute.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\MicrosoftEdge.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\MicrosoftEdge.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\filebot.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\filebot.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\flute.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\flute.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\flute.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" [Error: UNKNOWN: unknown error, lstat 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe'] {  errno: -4094,  code: 'UNKNOWN',  syscall: 'lstat',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\Windows\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\Windows\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\Windows\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: failure while getting file type for "C:\WINDOWS\System32\Wbem\MOF" [Error: EPERM: operation not permitted, lstat 'C:\WINDOWS\System32\Wbem\MOF'] {  errno: -4048,  code: 'EPERM',  syscall: 'lstat',  path: 'C:\\WINDOWS\\System32\\Wbem\\MOF'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by WindowsRegistryService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: Detection of Python Interpreter for Command py and args -3.6 failed as file Python 3.6 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Get language server folder name, Class name = f, completed in 247ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: Detection of Python Interpreter for Command python3 and args  failed as file  does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: Detection of Python Interpreter for Command py and args -2 failed as file Python 2 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:47: Detection of Python Interpreter for Command py and args -3.7 failed as file Python 3.7 not found!

 -3.8-64 does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by CurrentPathService are of count 3
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Get language server folder name, Class name = f, completed in 6ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: getActivatedEnvironmentVariables, Class name = C, completed in 5ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Arg 2: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Get language server folder name, Class name = f, completed in 10ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py>, Return Value: "languageServer.0.5.30"
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: > ~\AppData\Local\Programs\Python\Python38\python.exe -m pylint --disable=all --enable=F,unreachable,duplicate-key,unnecessary-semicolon,global-variable-not-assigned,unused-variable,unused-wildcard-import,binary-op-exception,bad-format-string,anomalous-backslash-in-string,bad-open-mode,E0001,E0011,E0012,E0100,E0101,E0102,E0103,E0104,E0105,E0107,E0108,E0110,E0111,E0112,E0113,E0114,E0115,E0116,E0117,E0118,E0202,E0203,E0211,E0213,E0236,E0237,E0238,E0239,E0240,E0241,E0301,E0302,E0303,E0401,E0402,E0601,E0602,E0603,E0604,E0611,E0632,E0633,E0701,E0702,E0703,E0704,E0710,E0711,E0712,E1003,E1101,E1102,E1111,E1120,E1121,E1123,E1124,E1125,E1126,E1127,E1128,E1129,E1130,E1131,E1132,E1133,E1134,E1135,E1136,E1137,E1138,E1139,E1200,E1201,E1205,E1206,E1300,E1301,E1302,E1303,E1304,E1305,E1306,E1310,E1700,E1701 --msg-template='{line},{column},{category},{symbol}:{msg}' --reports=n --output-format=text d:\Documents\Scripts\python\ProjectName\Tests\test_Collections.py
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:47: cwd: d:\Documents\Scripts\python\ProjectName
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:48: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.64397\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:48: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.64397\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:48: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Process.ChildProcess._handle.onexit (internal/child_process.js:283:5) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.64397\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2020-02-28 19:52:48: Failed to get interpreter information for 'C:\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe' Error: Command failed: "C:\\Users\USERNAME\AppData\Local\Microsoft\WindowsApps\python3.exe" "c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\interpreterInfo.py"Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640    at ChildProcess.exithandler (child_process.js:303:12)    at ChildProcess.emit (events.js:200:13)    at maybeClose (internal/child_process.js:1021:16)    at Socket.<anonymous> (internal/child_process.js:430:11)    at Socket.emit (events.js:200:13)    at Pipe.<anonymous> (net.js:586:12) {  killed: false,  code: 9009,  signal: null,  cmd: '"C:\\\\Users\\USERNAME\\AppData\\Local\\Microsoft\\WindowsApps\\python3.exe" ' +    '"c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.64397\\pythonFiles\\interpreterInfo.py"'}
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a truthy return value, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: Hide locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: All locators have completed locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] [vscode-icons] v10.0.0 activated!
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:48: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Activation Commands received undefined for shell cmd
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Starting Language Server, Class name = f, completed in 1369ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: getActivatedEnvironmentVariables, Class name = C, completed in 2ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: cwd: ""
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: > ~\AppData\Local\Programs\Python\Python38\python.exe c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\pythonFiles\testing_tools\run_adapter.py discover pytest -- --rootdir d:\Documents\Scripts\python\ProjectName -s --cache-clear Tests
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: cwd: ""
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = settings, result = exit
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 0ms, has a falsy return value, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Display locator refreshing progress, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Notify locators are locating, Class name = p, completed in 2ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Detected refreshing of Interpreters, Class name = p, completed in 2ms, has a falsy return value, Arg 1: {}, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Notify locators are locating, Class name = p, completed in 1ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = settings, result = exit
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 5ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: [object Object]. Shell identified as undefined 
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe'
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Shell path identified as shell 'powershell'
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell'
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: [object Object]. Shell identified as powershell 
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Shell identified as 'powershell'
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Cached data exists getEnvironmentVariables, <No Resource>
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Cached data exists getEnvironmentVariables, <No Resource>
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 1ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 3ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 2ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Cached data exists KeyPrefix=Cache_Method_Output_b.getCondaInfo-Args=
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: > conda --version
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters, Class name = m, completed in 11ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Error Python Extension: 2020-02-28 19:52:49: Failed to parse discovered Test Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT    at Process.ChildProcess._handle.onexit (internal/child_process.js:264:19)    at onErrorNT (internal/child_process.js:456:16)    at processTicksAndRejections (internal/process/task_queues.js:84:9) {  errno: 'ENOENT',  code: 'ENOENT',  syscall: 'spawn C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  path: 'C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe',  spawnargs: [    'c:\\Users\\USERNAME\\.vscode\\extensions\\ms-python.python-2020.2.64397\\pythonFiles\\testing_tools\\run_adapter.py',    'discover',    'pytest',    '--',    '--rootdir',    'd:\\Documents\\Scripts\\python\\ProjectName',    '-s',    '--cache-clear',    'Tests'  ]}
t.log @ /D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: getActivatedEnvironmentVariables, Class name = C, completed in 0ms, has a falsy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: undefined, Arg 3: true
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: > ~\AppData\Local\Programs\Python\Python38\python.exe -c "import pytest"
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Detected refreshing of Interpreters, Class name = p, completed in 1ms, has a falsy return value, Arg 1: {}, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Create file systemwatcher with pattern *\python.exe
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Create file systemwatcher with pattern *\*\python.exe
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Display locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Notify locators are locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Detected refreshing of Interpreters, Class name = p, completed in 0ms, has a falsy return value, Arg 1: {}, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Current value for rule system is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.8.0 64-bit"}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Current value for rule currentPath is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown","cachedEntry":true}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: undefined, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Register Interpreter Watcher, Class name = p, completed in 5ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: undefined, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 8ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 9ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10ms, has a truthy return value, Arg 1: undefined, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 10ms, has a truthy return value, Arg 1: undefined, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 9ms, has a truthy return value, Arg 1: undefined, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 6ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 7ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"},{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Build the workspace interpreter watcher, Class name = h, completed in 10ms, has a truthy return value, Arg 1: undefined, Return Value: <Return value cannot be serialized for logging>
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters, Class name = m, completed in 13ms, has a truthy return value, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Selected Interpreter from system, {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Current value for rule workspaceEnvs is nothing
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: setGlobalInterpreter, Class name = f, completed in 28ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: setGlobalInterpreter, Class name = f, completed in 26ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: setGlobalInterpreter, Class name = f, completed in 25ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","type":"Unknown"}, Arg 2: undefined, Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: setGlobalInterpreter, Class name = f, completed in 22ms, has a falsy return value, Arg 1: {"architecture":3,"path":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\python.exe","version":{"options":{"loose":false,"includePrerelease":false},"loose":false,"raw":"3.8.0-final","major":3,"minor":8,"patch":0,"prerelease":["final"],"build":[],"version":"3.8.0-final"},"sysPrefix":"C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38","fileHash":"a3ec4117c3ac78f92f28620376d3bd932d9452ce4bfcc20079e36880f35ac4435573334e95038ccf7535338181336e2bfe0c857b0e67a6ae84d6916e0a7a2abb","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.8.0 64-bit"}, Arg 2: undefined, Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = cachedInterpreters, result = runNextRule
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Executing next rule from cachedInterpreters
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = windowsRegistry, result = runNextRule
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Executing next rule from windowsRegistry
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = currentPath, result = runNextRule
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Executing next rule from currentPath
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = system, result = runNextRule
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Executing next rule from system
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 129ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 130ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 130ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 130ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by PipEnvService are of count 0
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by PipEnvService are []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by WorkspaceVirtualEnvService are of count 0
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by WorkspaceVirtualEnvService are []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 133ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Get Interpreters in CacheableLocatorService, Class name = g, completed in 130ms, has a truthy return value, Arg 1: <Uri:d:\Documents\Scripts\python\ProjectName>, Arg 2: true, Return Value: []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: false
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Selected Interpreter from workspaceEnvs, Nothing Selected
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Rule = workspaceEnvs, result = runNextRule
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Executing next rule from workspaceEnvs
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: autoSelectInterpreter, Class name = f, completed in 136ms, has a falsy return value, Arg 1: undefined, Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by PipEnvService are of count 0
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by PipEnvService are []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by WorkspaceVirtualEnvService are of count 0
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Interpreters returned by WorkspaceVirtualEnvService are []
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Checking whether locactors have completed locating, Class name = p, completed in 1ms, has a truthy return value, , Return Value: true
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: Hide locator refreshing progress, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:49: All locators have completed locating, Class name = p, completed in 0ms, has a falsy return value, , Return Value: undefined
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2720 Test discovery error, please check the configuration settings for the tests.
onDidNotificationChange @ /D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:2720
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Error Python Extension: 2020-02-28 19:52:50: Python Extension: displayDiscoverStatus TypeError: Cannot read property 'uri' of undefined    at rootDirectory (c:\Users\USERNAME\.vscode\extensions\ms-python.python-2020.2.64397\src\client\testing\common\managers\baseTestManager.ts:185:93)
t.log @ /D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:52:58: Cached data exists getEnvironmentVariables, extension-output-#4
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:56:32: Cached data exists getEnvironmentVariables, d:\Documents\Scripts\python\ProjectName
/D:/Programs/Microsoft VS Code/resources/app/out/vs/workbench/workbench.desktop.main.js:259 [Extension Host] Info Python Extension: 2020-02-28 19:56:32: Cached data exists getEnvironmentVariables, extension-output-#5

I hope this is what you need.

@SonOfDiablo
Copy link
Author

Just posting to hear if there is any news about this issue?

I still can't discover (and thus run) tests through VS Code..

@karthiknadig
Copy link
Member

We need to improve logging in cases where we get:

Error: spawn C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\python.exe ENOENT

Looking at the logs there isn't enough info on why this is failing. Since you confirmed that this is a correct path to python exe, I don't see why it is failing with reason that it cannot find the exe.
One thing that you could try is, setting the path to the pytest.exe and see if that helps.
image

Settings for tests should look like this, in your workspace settings.json:

{
    "python.testing.pytestPath": "C:\\Python38\\Scripts\\pytest.exe",
    "python.testing.pytestArgs": [
        "Tests"
    ],
    "python.testing.unittestEnabled": false,
    "python.testing.nosetestsEnabled": false,
    "python.testing.pytestEnabled": true
}

@SonOfDiablo
Copy link
Author

SonOfDiablo commented Mar 18, 2020

Pytest Path was set to just "pytest" I tried changing it to the absolute path (in my case "C:\Users\USERNAME\AppData\Local\Programs\Python\Python38\Scripts\pytest.exe") however that didn't change anything.

Also "python.testing.pytestPath" wasn't in my settings.json (not even after changing the settings), so I had to add that manually.

The entire settings.json looks like this:

{
    "python.testing.unittestEnabled": false,
    "python.testing.nosetestsEnabled": false,
    "python.testing.pytestEnabled": true,
    "python.testing.pytestPath": "C:\\Users\\USERNAME\\AppData\\Local\\Programs\\Python\\Python38\\Scripts\\pytest.exe",
    "python.testing.pytestArgs": [
        "Tests",
        "--durations=5"
    ]
}

(I have also tried without "--durations=5", don't really know why it's there though)

@karthiknadig
Copy link
Member

@SonOfDiablo If you didn't see python.testing.pytestPath in the workspace settings.json, it may have changed it in user settings. User settings apply globally, so make sure python.testing.pytestPath is only in workspace settings. Ensure that you have selected workspace tab when changing settings.
image

As for the issue itself, I think the next step for us is to improve logging for these cases.

@SonOfDiablo
Copy link
Author

I did not notice there was a distinction between User and Workspace settings... I feel a bit silly now.
But in any case, it didn't have any effect changing that variable.

I guess I will have to just kick back and wait for improved logging then.

Thank you though, for putting this much time and energy into the issue :)

@karthiknadig karthiknadig changed the title pytest Test Discovery failed Improve logging for cases where test adapter fails with file (python) not found Jun 19, 2020
@karthiknadig
Copy link
Member

This error should be more visible with #16769

@karthiknadig karthiknadig removed their assignment Aug 6, 2021
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Sep 15, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-testing bug Issue identified by VS Code Team member as probable bug
Projects
None yet
Development

No branches or pull requests

4 participants