microsoft / vscode-python

Python extension for Visual Studio Code
https://aka.ms/pvsc-marketplace
MIT License
4.28k stars 1.17k forks source link

Pytest: Cannot Discover tests #7110

Closed csm10495 closed 5 years ago

csm10495 commented 5 years ago

Environment data

Expected behaviour

Should be able to easily discover tests in VS Code via Pytest.

Actual behaviour

I have a sample project, with some unit tests written via pytest. I can't seem to get them to discover using VS Code: https://github.com/csm10495/csmlog

I set workspace settings as follows (when working from the topmost folder of the repo:

{
    "python.testing.pytestArgs": [
        "csmlog/tests/tests.py"
    ],
    "python.testing.unittestEnabled": false,
    "python.testing.nosetestsEnabled": false,
    "python.testing.pytestEnabled": true
}

and yet no matter what I do, I see this: image

and this in the Python Test Log:

python C:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
python C:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear

A .pytest_cache folder is generated with empty nodeids/stepwise files.

Of course, I can run the tests through pytest directly like so:

C:\Users\csm10495\Desktop\csmlog>py -3 -m pytest --collect-only csmlog/tests/tests.py
================================================= test session starts =================================================
platform win32 -- Python 3.7.0, pytest-5.0.1, py-1.8.0, pluggy-0.12.0
rootdir: C:\Users\csm10495\Desktop\csmlog
collected 6 items
<Package C:\Users\csm10495\Desktop\csmlog\csmlog\tests>
  <Module tests.py>
    <Function test_get_logger_and_clear_logs>
    <Function test_multi_setup_fails>
    <Function test_sending_to_stderr>
    <Function test_sending_to_alt_stream>
    <Function test_2_enables_disables_first>
    <Function test_udp_logging>

============================================ no tests ran in 0.03 seconds =============================================

or...

C:\Users\csm10495\Desktop\csmlog>py -3 -m pytest csmlog/tests/tests.py -v
================================================= test session starts =================================================
platform win32 -- Python 3.7.0, pytest-5.0.1, py-1.8.0, pluggy-0.12.0 -- C:\Python37\python.exe
cachedir: .pytest_cache
rootdir: C:\Users\csm10495\Desktop\csmlog
collected 6 items

csmlog/tests/tests.py::test_get_logger_and_clear_logs PASSED                                                     [ 16%]
csmlog/tests/tests.py::test_multi_setup_fails PASSED                                                             [ 33%]
csmlog/tests/tests.py::test_sending_to_stderr PASSED                                                             [ 50%]
csmlog/tests/tests.py::test_sending_to_alt_stream PASSED                                                         [ 66%]
csmlog/tests/tests.py::test_2_enables_disables_first PASSED                                                      [ 83%]
csmlog/tests/tests.py::test_udp_logging PASSED                                                                   [100%]

============================================== 6 passed in 0.23 seconds ===============================================

Steps to reproduce:

  1. Clone repo
  2. Try to discover tests after opening the root of the repo in 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 'AlwaysDisplayTestExplorer - experiment'
> 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)"
> python -c "import sys;print(sys.executable)"
> conda info --json
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
> ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
Starting Jedi Python language engine.
> conda info --json
> conda --version
> C:\Python37\python.exe -c "import sys;print(sys.prefix)"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -c "import sys;print(sys.prefix)"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -c "import sys;print(sys.executable)"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -c "import sys;print(sys.executable)"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -m site --user-site
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe -m site --user-site
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe completion.py
cwd: c:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles
> C:\Python37\python.exe completion.py
cwd: c:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles
> C:\Python37\python.exe -c "import pytest"
> C:\Python37\python.exe -c "import pytest"
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog
> C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
cwd: c:\Users\csm10495\Desktop\csmlog

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)

[Extension Host] debugger listening on port 37887
console.ts:137 [Extension Host] (node:1948) [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] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 2ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 2ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 43ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 10ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 8ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 7ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Register Interpreter Watcher, Class name = p, completed in 6ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 7ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 5ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 3ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Build the workspace interpreter watcher, Class name = h, completed in 6ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, , Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > pyenv root
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detection of Python Interpreter for Command python3.7 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detection of Python Interpreter for Command python3.6 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detection of Python Interpreter for Command python2 and args  failed
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > py -3.7 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > py -3.6 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > py -3 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > py -2 -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > python -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Get Interpreters, Class name = g, completed in 257ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:53: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > ~\AppData\Local\Microsoft\WindowsApps\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > ~\AppData\Local\Microsoft\WindowsApps\python3.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\interpreterInfo.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CondaEnvFileService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CondaEnvFileService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CondaEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CondaEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by VirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by VirtualEnvService are []
console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: Detection of Python Interpreter for Command py and args -3.6 failed as file Python 3.6 not found!

 -3.7-64
 -2.7-64 does not exist
t.log @ console.ts:137
console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: 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] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 361ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: Failed to parse interpreter information for 'C:\Users\csm10495\AppData\Local\Microsoft\WindowsApps\python.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0 at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CurrentPathService are of count 5
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by CurrentPathService are [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 460ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule system is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule currentPath is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: Failed to parse interpreter information for 'C:\Users\csm10495\AppData\Local\Microsoft\WindowsApps\python.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0 at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
2console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: Failed to parse interpreter information for 'C:\Users\csm10495\AppData\Local\Microsoft\WindowsApps\python3.exe' with JSON Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 [SyntaxError: Unexpected token P in JSON at position 0   at JSON.parse (<anonymous>) at p.getInterpreterInformation (C:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\out\client\extension.js:75:290659)]
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 28ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = cachedInterpreters, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 34ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 496ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 497ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Build the workspace interpreter watcher, Class name = h, completed in 3ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py>, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 6ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog\csmlog\tests\conftest.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown","cachedEntry":true}]
3console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters, Class name = g, completed in 2ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule system is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule currentPath is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Error Python Extension: 2019-08-26 22:55:54: Failed to check if file needs to be fixed { [Error: ENOENT: no such file or directory, open 'c:\Users\csm10495\Desktop\csmlog\.vscode\settings.json']  errno: -4058,  code: 'ENOENT',  syscall: 'open',  path:   'c:\\Users\\csm10495\\Desktop\\csmlog\\.vscode\\settings.json' }
t.log @ console.ts:137
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from system, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 3ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by KnownPathsService are of count 1
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by KnownPathsService are [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 45ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 44ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 42ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 54ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from cachedInterpreters
3console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 57ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WindowsRegistryService are of count 2
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WindowsRegistryService are [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 37ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 59ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 34ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 33ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 61ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 62ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule system is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule currentPath is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 10ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true}, Arg 2: <argument cannot be serialized for logging>, Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = cachedInterpreters, result = exit
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 12ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 49ms, Arg 1: undefined, Arg 2: <argument cannot be serialized for logging>, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 1ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 1ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = settings, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from settings
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: [object Object]. Shell identified as undefined 
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Shell path identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Terminal shell path 'C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe' identified as shell 'powershell'
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: [object Object]. Shell identified as powershell 
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Shell identified as 'powershell'
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 5ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: []
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Cached data exists getEnvironmentVariables, <No Resource>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters, Class name = g, completed in 2ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > conda info --json
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: > conda --version
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from windowsRegistry, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from currentPath, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Create file systemwatcher with pattern *\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Create file systemwatcher with pattern *\*\python.exe
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Display locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Notify locators are locating, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Detected refreshing of Interpreters, Class name = p, completed in 0ms, Arg 1: {}, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Register Interpreter Watcher, Class name = p, completed in 0ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 0ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 2ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 2ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 1ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"},{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Build the workspace interpreter watcher, Class name = h, completed in 1ms, Arg 1: undefined, Return Value: <Return value cannot be serialized for logging>
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters, Class name = g, completed in 4ms, Arg 1: undefined, Return Value: [{"architecture":3,"path":"C:\\Python27\\python.exe","version":{"raw":"2.7.15-final","major":2,"minor":7,"patch":15,"prerelease":["final"],"build":[],"version":"2.7.15-final"},"sysPrefix":"C:\\Python27","fileHash":"732fe4421becff72b958e9f1bc38a1aa080c8861b7b9f4e73eef05a252d102f052e5aad84238494fe94047b56a7a2953e6a367a966212c5ee486a57e42746655","companyDisplayName":"Python Software Foundation","type":"Unknown"},{"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}]
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule system is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","cachedEntry":true,"displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule currentPath is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule windowsRegistry is {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from cachedInterpreters, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from system, {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.0 64-bit"}
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Current value for rule workspaceEnvs is nothing
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by PipEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are of count 0
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Interpreters returned by WorkspaceVirtualEnvService are []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 34ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 35ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 31ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: setGlobalInterpreter, Class name = f, completed in 28ms, Arg 1: {"architecture":3,"path":"C:\\Python37\\python.exe","version":{"raw":"3.7.0-final","major":3,"minor":7,"patch":0,"prerelease":["final"],"build":[],"version":"3.7.0-final"},"sysPrefix":"C:\\Python37","fileHash":"cae05aa637d6d5b36b53a10bba977c56e9cb27c93c7bb7ff95f33d5a1dd9f8fcc4f47a0b7453632c6592df6cdcae0806687b512b291d85ea1b7f9472495b3aab","companyDisplayName":"Python Software Foundation","type":"Unknown","displayName":"Python 3.7.0 64-bit"}, Arg 2: undefined, Return Value: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 48ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Get Interpreters in CacheableLocatorService, Class name = f, completed in 46ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: true, Return Value: []
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = windowsRegistry, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from windowsRegistry
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = currentPath, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from currentPath
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = cachedInterpreters, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from cachedInterpreters
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = system, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from system
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Checking whether locactors have completed locating, Class name = p, completed in 0ms, , Return Value: true
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Hide locator refreshing progress, Class name = p, completed in 0ms, , Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: All locators have completed locating, Class name = p, completed in 0ms, , Return Value: undefined
3console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 63ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Selected Interpreter from workspaceEnvs, Nothing Selected
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 63ms, Arg 1: undefined, Return Value: undefined
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Rule = workspaceEnvs, result = runNextRule
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: Executing next rule from workspaceEnvs
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:54: autoSelectInterpreter, Class name = f, completed in 63ms, Arg 1: undefined, Return Value: undefined
5console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "import sys;print(sys.prefix)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "import sys;print(sys.executable)"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe -m site --user-site
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe completion.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: > C:\Python37\python.exe completion.py
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:55: cwd: c:\Users\csm10495\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:59: Cached data exists getEnvironmentVariables, <No Resource>
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:55:59: > C:\Python37\python.exe -c "import pytest"
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: Activation Commands received undefined for shell cmd
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: getActivatedEnvironmentVariables, Class name = b, completed in 3ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:01: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:04: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: getActivatedEnvironmentVariables, Class name = b, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:05: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:13: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: getActivatedEnvironmentVariables, Class name = b, completed in 3ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:15: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:16: Cached data exists getEnvironmentVariables, extension-output-#3
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:18: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:18: Cached data exists getEnvironmentVariables, extension-output-#2
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:21: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:21: Cached data exists getEnvironmentVariables, extension-output-#3
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:56:25: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:18: Cached data exists getEnvironmentVariables, extension-output-#3
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:22: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:22: Cached data exists getEnvironmentVariables, extension-output-#2
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:26: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:26: Cached data exists getEnvironmentVariables, extension-output-#3
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:47: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:57:48: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:37: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: getActivatedEnvironmentVariables, Class name = b, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:38: cwd: c:\Users\csm10495\Desktop\csmlog
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:41: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:42: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:47: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 22:59:52: cwd: c:\Users\csm10495\Desktop\csmlog
2console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:12: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
16log.ts:173   ERR Cannot read property 'webview' of undefined: TypeError: Cannot read property 'webview' of undefined
    at Function.refreshContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\Utilities.js:34:25)
    at PreviewManager.onChangeTextContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\PreviewManager.js:21:29)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:227)
    at c.$acceptModelChanged (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:850)
    at d._doInvokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:1006)
    at d._invokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:698)
    at d._receiveRequest (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:667:346)
    at d._receiveOneMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:666:141)
    at define.constructor._protocol.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:664:400)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at n.constructor.e.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:775:104)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at y._receiveMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:188:834)
    at define.constructor._socketDisposables.push._socketReader.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:186:116)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at f.acceptChunk (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:182:588)
    at define.constructor._register._socket.onData.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:181:919)
    at Socket.t (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:190:329)
    at Socket.emit (events.js:182:13)
    at addChunk (_stream_readable.js:283:12)
    at readableAddChunk (_stream_readable.js:264:11)
    at Socket.Readable.push (_stream_readable.js:219:10)
    at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)
log.ts:173   ERR Cannot read property 'webview' of undefined: TypeError: Cannot read property 'webview' of undefined
    at Function.refreshContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\Utilities.js:34:25)
    at PreviewManager.onChangeTextContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\PreviewManager.js:21:29)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:227)
    at c.$acceptDirtyStateChanged (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:608)
    at c.$acceptModelSaved (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:351)
    at d._doInvokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:1006)
    at d._invokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:698)
    at d._receiveRequest (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:667:346)
    at d._receiveOneMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:666:141)
    at define.constructor._protocol.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:664:400)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at n.constructor.e.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:775:104)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at y._receiveMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:188:834)
    at define.constructor._socketDisposables.push._socketReader.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:186:116)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at f.acceptChunk (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:182:588)
    at define.constructor._register._socket.onData.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:181:919)
    at Socket.t (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:190:329)
    at Socket.emit (events.js:182:13)
    at addChunk (_stream_readable.js:283:12)
    at readableAddChunk (_stream_readable.js:264:11)
    at Socket.Readable.push (_stream_readable.js:219:10)
    at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:38: cwd: c:\Users\csm10495\Desktop\csmlog
log.ts:173   ERR Cannot read property 'webview' of undefined: TypeError: Cannot read property 'webview' of undefined
    at Function.refreshContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\Utilities.js:34:25)
    at PreviewManager.onChangeTextContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\PreviewManager.js:21:29)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:227)
    at c.$acceptModelChanged (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:850)
    at d._doInvokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:1006)
    at d._invokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:698)
    at d._receiveRequest (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:667:346)
    at d._receiveOneMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:666:141)
    at define.constructor._protocol.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:664:400)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at n.constructor.e.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:775:104)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at y._receiveMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:188:834)
    at define.constructor._socketDisposables.push._socketReader.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:186:116)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at f.acceptChunk (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:182:588)
    at define.constructor._register._socket.onData.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:181:919)
    at Socket.t (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:190:329)
    at Socket.emit (events.js:182:13)
    at addChunk (_stream_readable.js:283:12)
    at readableAddChunk (_stream_readable.js:264:11)
    at Socket.Readable.push (_stream_readable.js:219:10)
    at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:46: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: getActivatedEnvironmentVariables, Class name = b, completed in 0ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:48: cwd: c:\Users\csm10495\Desktop\csmlog
log.ts:173   ERR Cannot read property 'webview' of undefined: TypeError: Cannot read property 'webview' of undefined
    at Function.refreshContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\Utilities.js:34:25)
    at PreviewManager.onChangeTextContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\PreviewManager.js:21:29)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:227)
    at c.$acceptModelChanged (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:850)
    at d._doInvokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:1006)
    at d._invokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:698)
    at d._receiveRequest (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:667:346)
    at d._receiveOneMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:666:141)
    at define.constructor._protocol.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:664:400)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at n.constructor.e.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:775:104)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at y._receiveMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:188:834)
    at define.constructor._socketDisposables.push._socketReader.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:186:116)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at f.acceptChunk (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:182:588)
    at define.constructor._register._socket.onData.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:181:919)
    at Socket.t (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:190:329)
    at Socket.emit (events.js:182:13)
    at addChunk (_stream_readable.js:283:12)
    at readableAddChunk (_stream_readable.js:264:11)
    at Socket.Readable.push (_stream_readable.js:219:10)
    at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: Cached data exists ActivatedEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: getActivatedEnvironmentVariables, Class name = b, completed in 1ms, Arg 1: <Uri:c:\Users\csm10495\Desktop\csmlog>, Arg 2: undefined, Arg 3: false
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: cwd: c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: > C:\Python37\python.exe ~\.vscode\extensions\ms-python.python-2019.8.30787\pythonFiles\testing_tools\run_adapter.py discover pytest -- -s --cache-clear
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:02:50: cwd: c:\Users\csm10495\Desktop\csmlog
log.ts:173   ERR Cannot read property 'webview' of undefined: TypeError: Cannot read property 'webview' of undefined
    at Function.refreshContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\Utilities.js:34:25)
    at PreviewManager.onChangeTextContent (C:\Users\csm10495\.vscode\extensions\daiyy.quick-html-previewer-1.0.0\out\src\PreviewManager.js:21:29)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:227)
    at c.$acceptModelChanged (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:540:850)
    at d._doInvokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:1006)
    at d._invokeHandler (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:668:698)
    at d._receiveRequest (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:667:346)
    at d._receiveOneMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:666:141)
    at define.constructor._protocol.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:664:400)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at n.constructor.e.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:775:104)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at a (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:815)
    at e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:179:861)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at y._receiveMessage (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:188:834)
    at define.constructor._socketDisposables.push._socketReader.onMessage.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:186:116)
    at u.fire (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:50:207)
    at f.acceptChunk (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:182:588)
    at define.constructor._register._socket.onData.e (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:181:919)
    at Socket.t (c:\Program Files\Microsoft VS Code\resources\app\out\vs\workbench\services\extensions\node\extensionHostProcess.js:190:329)
    at Socket.emit (events.js:182:13)
    at addChunk (_stream_readable.js:283:12)
    at readableAddChunk (_stream_readable.js:264:11)
    at Socket.Readable.push (_stream_readable.js:219:10)
    at Pipe.onStreamRead [as onread] (internal/stream_base_commons.js:94:17)
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:04:03: Cached data exists getEnvironmentVariables, extension-output-#3
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:04:06: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:04:06: Cached data exists getEnvironmentVariables, extension-output-#2
console.ts:137 [Extension Host] Info Python Extension: 2019-08-26 23:04:29: Cached data exists getEnvironmentVariables, c:\Users\csm10495\Desktop\csmlog
kimadeline commented 5 years ago

Hello @csm10495 👋 Thank you for reaching out and providing a link to your repo 👍 pytest's conventions for Python test discovery specify that pytest will:

search for test_*.py or *_test.py files.

If you rename your tests.py file the tests will be discovered accordingly (here I renamed it to test_csmlog.py):

image

Please note thatpython.testing.pytestArgs should contain the path to the root folder of your tests and not the path to a file:

"python.testing.pytestArgs": [
        "csmlog/tests" // "csmlog" works too
 ]
csm10495 commented 5 years ago

Yay! Thank you so much!