Closed ischurov closed 4 months ago
Hi! What I am noticing from your logs that there is no reference to Running UNITTEST execution
which is a trace level log that is logged in the extension before anything is sent to the subprocess for python to run. If you run either pytest or unittest are you able to see this in your logs? The pytest equvilant is Running pytest with arguments
.
If you are able to try this on the pre-release of the python extension that would be helpful as well because we just switched test communication to use named pipes which may also help if there is a communication issue.
@eleanorjboyd Hi! I don't see any lines Running UNITTEST execution
or Running pytest with arguments
in Python logs. The only thing I found with Running pytest
if I try pytest
is Running pytest discovery with command: -m pytest -p vscode_pytest --collect-only test_pytest for workspace /home/ischurov/tcm10/testing_tests
. (See the excerpt from the full log below.)
I also tried to switch to pre-release version of the extension (v2024.5.11021008
) and nothing changed.
It looks like frontend basically does nothing when I click "Run test" or invoke tests in any way (e.g. Shift+Command+P → "Test: Run All Tests" do not work either) except of switching to "Test results" pane and displaying there "Finished running tests!".
Thanks for that info, I have not seen this problem before so I am sorry I don't have a direct debugging solution.
python -m pytest /vol/tcm10/ischurov/testing_tests/test_pytest/test_something.py::test_foo
(this specifies a specific run ID so it is calling what we want directly)Thank you!
- pytest is running with the cwd at "/vol/tcm10/ischurov/testing_tests/test". Is this what you desire / expect?
This is not exactly what I expect, as my pytest tests live in the directory /vol/tcm10/ischurov/testing_tests/test_pytest
. But I don't see where I could specify this cwd. The only mention of ./test
folder is workspace settings, in python.testing.unittestArgs
, which are currently inactive as I disabled UnitTest to make sure it does not interfere with pytest. (But the problem persisted for UnitTest as well.)
# Workspace settings.json
{
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "none",
"python.testing.unittestArgs": [
"-v",
"-s",
"./test",
"-p",
"test*.py"
],
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"test_pytest"
]
}
- what happens if you run this from your command line?
python -m pytest /vol/tcm10/ischurov/testing_tests/test_pytest/test_something.py::test_foo
(this specifies a specific run ID so it is calling what we want directly)
Works without problems:
(latsym2) (base) ischurov@cn84:~/tcm10/testing_tests$ python -m pytest /vol/tcm10/ischurov/testing_tests/test_pytest/test_something.py::test_foo
============================================================ test session starts =============================================================
platform linux -- Python 3.10.8, pytest-7.4.0, pluggy-1.0.0
rootdir: /vol/tcm10/ischurov/testing_tests
plugins: anyio-3.6.2
collected 1 item
test_pytest/test_something.py . [100%]
============================================================= 1 passed in 10.04s =============================================================
(latsym2) (base) ischurov@cn84:~/tcm10/testing_tests$
- If you click discovery, wait for it to populate and seem "done" can you then click the "reload" button to redo discovery and see if it errors for you by saying "Test discovery already in progress, not starting a new one." Maybe the previous discovery operation didn't finish and is blocking the testing thread.
No, I don't see errors like this after second discovery. Below is the log (I cleared the log, then refreshed tests, waited for them to populate, and refreshed again; the full logs after the clearing is present).
- do you have any settings related to cwd? My best guess right now it is unable to connect tests with the workspace
I do not see anything related to cwd in my settings.json. To be sure, I deleted User Settings. My workspace settings are included above, and my Remote settings are just
{
"python.testing.pytestEnabled": true
}
Thanks for your help!
Can you see if it makes a difference if you remove all the pytest args and instead just leave it in your settings as "python.testing.pytestArgs": []
. Pytest should be able to search all subdirectories and my only thought is the subprocess isn't spinning up right with that cwd specified. If this doesn't work could you send me a zip of this minimal repro you have here? I will try it on my computer and attempt to replicate it.
Thanks! Sorry for all the back and forth.
I believe I localized the problem! The tests stop working if I open a folder through a symlink. I reproduced it on three Linux remote systems. Example setup:
/home/user$ tree some_dir
some_dir/
└── testing_tests
├── my_app.py
└── test
└── test_my_app.py
/home/user$ ls -lh sym_link
lrwxrwxrwx 1 user user 8 Apr 18 20:48 sym_link -> some_dir
If I connect to that remote system with either SSH or Tunnel, then open /home/user/some_dir/testing_tests
, the tests are working. If I open /home/user/sym_link/testing_tests
instead, they fail to start as described in the initial report.
I am currently not sure whether it is related to Remote systems or not at all, as I cannot open a folder through a symlink on my local MacOS machine (the OS simply substitutes a symlinked path with the corresponding real path in the Open Folder dialog). I tried, however, to use my local machine as remote and access it through Tunnel — then I can open folder through a symlink and I get the same result (tests are not working).
The problem reproduces with empty "python.testing.pytestArgs". It also reproduces with UnitTest. The behaviour of pre-release version of Python extension (v2024.5.11021008
) is identical to that of the release version (v2024.4.1
).
Okay, I see that it looks like a duplicate for #23223 after all.
Thank you for your careful investigation! I am putting in a PR to fix the symlink issue described in #232223 now so it should be ready tomorrow so that you can try it on insiders. Getting the repo without the path getting resolved was also very challenging for me- ended up having to launch vscode from my terminal on my mac using code '/name/of/symlink/path/folder
Thanks!
Hello! I have put in a fix for this issue and it should now be working! If you could try it on the newest version of the python extension nightly pre-release that would be great so we know if it works!
Happy coding!
@eleanorjboyd I am using v2024.5.11101014 (pre-release) version of the Python extension under VS Code Insiders, but the problem still reproduces. I thought that probably extension is not updated yet (I think that it was out before you merged the fix)?
Are you on insiders or stable vscode? We had some updates which require the vscode version to be "^1.89.0-20240415"
I'm on Insiders, version info reports as
Version: 1.89.0-insider (Universal)
Commit: 5ae5a741bdb676abb667fd4896dc2a40e313db3a
Date: 2024-04-22T05:51:32.950Z
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin x64 23.4.0
I tried to switch the Python extension to Release version and then to Pre-Release version again, it still reports as v2024.5.11101014
and no newer versions are available.
Hi! Sorry we seem to have had problems publishing the pre-release so this change is not out. I didn't realize this earlier. I will let you know when it is for sure, I did test it myself and saw pre-release not working but a specific dev version I have working so hopefully when we get it onto a pre-release version it will work for you. Thanks
@eleanorjboyd I still can reproduce the problem on Python extension v2024.7.11241010 (pre-release)
on current Insiders ( a1f2ea3162c704a5890c35dde4df6ee46283d957 , 2024-05-03T05:49:50.917Z). This is not urgent for me (since I know it's due to symlinks, I simply avoid them in my paths), just wanted to make sure that the fix is not buried somewhere inside the building system :)
Hi @ischurov! Sorry this still isn't working. It should now be out on vscode stable, could you check your versions on both the local and remote machine to check to make sure you have them all updated? If it still doesn't work I will re-open and try and repro again. Thanks!
Hi @eleanorjboyd! I updated VSCode (stable) and can reproduce the issue with SSH-Remote. To make sure that the remote version is also updated, I deleted .vscode
and .vscode-server
on the remote machine, then it was authomatically reinstalled by my VSCode. Version:
Version: 1.89.0
Commit: b58957e67ee1e712cebf466b995adf4c5307b2bd
Date: 2024-05-01T02:10:10.196Z (5 days ago)
Electron: 28.2.8
ElectronBuildId: 27744544
Chromium: 120.0.6099.291
Node.js: 18.18.2
V8: 12.0.267.19-electron.0
OS: Darwin x64 23.4.0
I can reproduce the problem on the release version of Python extension (v2024.6.0
) and pre-release version (v2024.7.11241010 (pre-release)
)
Thanks!
Thank you for checking!! I will reopen now.
I did add additional logs I am now remembering with my most recent changes- could you resend your python logs with the log level set to trace. Sorry to ask you to run it again!
Sure, here is it. It's a different system, so details can differ from what I was sending before; if needed, I can reproduce it on the previous system as well.
Hi! Does it work if you run it with pytest / is it possible to use pytest for your solution? We only fixed this for pytest and I think I got confused in your initial request as we discussed both pytest and unittest as causing problems but your specific run you just sent was with unittest.
To fix for unittest will take some extra work- I have no looking into the symlink issue there and my strategy I used for pytest is not translatable due to its usage of pytest args to support the symlink bug fix.
Thanks!
Yes, I can confirm that pytest is working! If I can help with the unittest issue in any way, I would be glad to do so.
Great thanks! Do you need unittest or can you run all your unittests with pytest? Curious if I need to implement a solution since pytest can normally handle unittest scenarios and that could avoid the item. I can also add it with a lower priority or give you advice on how to fix it if you want to give it a go yourself!
Oh, I didn't know that pytest supports unittest tests, thanks! I was able to run unittest tests via pytest on a "minimal repro" system, but failed to do so with my real codebase on a computation cluster I use. Moreover, even test discovery doesn't work (it worked before). The good news is that I see some seemingly relevant messages in the logs, see below.
hm seeing PermissionError: [Errno 13] Permission denied: '/gpfs/home1/a419fb/__init__.py'
; does this occur if you try running the exact same command from the integrated terminal?
Other questions if it works without failure from the terminal:
I tried to run /nix/store/gxzan3z85n126r9q2akr3crb1w5gc6z7-python3-3.11.9-env/bin/python -m pytest -p vscode_pytest --collect-only --rootdir=.
, but get an error ImportError: Error importing plugin "vscode_pytest": No module named 'vscode_pytest'
. Anyway, I clearly do not have permissions to write to /gpfs/home1/
.
/home/ishchurov/frustrations-eda
, but /home/ishchurov
is a symlink to /gpfs/home1/ishchurov
."python.testing.pytestArgs": ["test"]
, but if I remove "test"
and make it empty, nothing changes.a419fb
in my codebase. Path /gpfs/home1/a419fb/__init__.py
could not correspond to anything in my project.Sorry the vscode_pytest is a custom plugin we add- you can just remove that from your args and see if it works then, as well as the -p in front of it, to try it from the terminal and test if you see the same permissions error. If not then it is an access we are attempting to do with the plugin to return data. You also say you have a cluster you are running it on- any reason this might block named pipes from getting created?
Because we have not heard back with the information we requested, we are closing this issue for now. If you are able to provide the info later on, then we will be happy to re-open this issue to pick up where we left off.
Happy Coding!
Type: Bug
Behaviour
I cannot run any test in my project when I use Remote Tunnel or Remote SSH. This applies both to UnitTest and pytest frameworks. Test discovery works, but after that when I run any test, it immediately finishes. In Test Results pane, I see only message "Finished running tests!". No tests are marked as passed or failed. If I add time.sleep(10) in my test, it finishes immediately nevertheless. When I run tests locally, they work as expected, so it seem to be related to remote execution.
This is a reopening of #21992 with the diagnostic data requested (I cannot reopen it in the usual way as it is locked).
I can reproduce this problem on two different clusters, using two different Python environments (Python and nix). It also reproduces at vscode.dev.
Below I include the data from the Python pane. Log level is set to trace. When I run the test, the only thing is being added to this log is
[debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
.Diagnostic data
Output for
Python
in theOutput
panel (View
→Output
, change the drop-down the upper-right of theOutput
panel toPython
)``` 2024-04-17 14:36:59.664 [info] Experiment 'pythonaa' is active 2024-04-17 14:36:59.664 [info] Experiment 'pythonRecommendTensorboardExt' is active 2024-04-17 14:36:59.664 [info] Experiment 'pythonREPLSmartSend' is active 2024-04-17 14:36:59.664 [info] Experiment 'pythonTerminalEnvVarActivation' is active 2024-04-17 14:36:59.664 [info] Experiment 'pythonTestAdapter' is active 2024-04-17 14:36:59.664 [debug] Start watching file for changes /home/ischurov/.conda/environments.txt 2024-04-17 14:36:59.664 [debug] Start watching: /home/ischurov/.conda with pattern environments.txt using VSCode API 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /usr/local/bin/python3 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/wikipedia-vis/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/scrappytest/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/qqublish/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/pythonProject/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/impossible/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/final_project/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/docx-to-rusgram/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/prj/openai-quickstart-python/venv/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /usr/local/opt/python@3.8/bin/python3.8 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.virtualenvs/chooseticket/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/wavelets/.conda/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/pythonProject3/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/prj/othello-gpt-experiments/.conda/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/pythonProject/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/py37/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/py37-conv-topo/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/py3.10/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/latsym_test/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/kwant/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/incline-fio/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/kwant-py36/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/numba36/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/first-project2021/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/final_project/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/featurevis/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/envs/chromosome-tectonics/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/miniconda3/bin/python 2024-04-17 14:36:59.664 [debug] Removing invalid env from cache /Users/user/.julia/v0.6/SymEngine/deps/usr/bin/python 2024-04-17 14:36:59.664 [debug] Start watching root /home/ischurov/tcm10/testing_tests for globs ["python","*/python","*/bin/python"] 2024-04-17 14:36:59.664 [debug] Start watching: /home/ischurov/tcm10/testing_tests with pattern python using VSCode API 2024-04-17 14:36:59.664 [debug] Start watching: /home/ischurov/tcm10/testing_tests with pattern */python using VSCode API 2024-04-17 14:36:59.664 [debug] Start watching: /home/ischurov/tcm10/testing_tests with pattern */bin/python using VSCode API 2024-04-17 14:36:59.664 [info] Default formatter is set to ms-python.python for workspace /home/ischurov/tcm10/testing_tests 2024-04-17 14:36:59.664 [error] The setting "editor.defaultFormatter" for Python is set to "ms-python.python" which is deprecated. 2024-04-17 14:36:59.664 [error] Formatting features have been moved to separate formatter extensions. 2024-04-17 14:36:59.664 [error] See here for more information: https://code.visualstudio.com/docs/python/formatting 2024-04-17 14:36:59.664 [error] Please install the formatter extension you prefer and set it as the default formatter. 2024-04-17 14:36:59.664 [error] For `autopep8` use: https://marketplace.visualstudio.com/items?itemName=ms-python.autopep8 2024-04-17 14:36:59.664 [error] For `black` use: https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter 2024-04-17 14:36:59.664 [error] For `yapf` use: https://marketplace.visualstudio.com/items?itemName=eeyore.yapf 2024-04-17 14:36:59.664 [debug] Waiting for test server to start... 2024-04-17 14:36:59.664 [debug] No cached env found for /home/ischurov/.conda/envs/latsym/bin/python 2024-04-17 14:36:59.664 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python 2024-04-17 14:36:59.664 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python 2024-04-17 14:36:59.664 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python 2024-04-17 14:36:59.664 [info] Test server listening. 2024-04-17 14:36:59.664 [debug] Test server started. 2024-04-17 14:36:59.664 [debug] Testing: Setting up watcher for /home/ischurov/tcm10/testing_tests 2024-04-17 14:36:59.664 [warning] Failed to check if /home/ischurov/.conda/envs/latsym/bin/python is an executable [Error: ENOENT: no such file or directory, lstat '/home/ischurov/.conda/envs/latsym/bin/python'] { errno: -2, code: 'ENOENT', syscall: 'lstat', path: '/home/ischurov/.conda/envs/latsym/bin/python' } 2024-04-17 14:36:59.664 [debug] Dump environment variables { "USER": "ischurov", "SSH_CLIENT": "131.174.30.50 44142 22", "XDG_SESSION_TYPE": "tty", "SHLVL": "1", "MOTD_SHOWN": "pam", "HOME": "/home/ischurov", "OLDPWD": "/home/ischurov/.vscode-server", "MODULES_CMD": "/usr/lib/x86_64-linux-gnu/modulecmd.tcl", "SSL_CERT_FILE": "/usr/lib/ssl/certs/ca-certificates.crt", "DBUS_SESSION_BUS_ADDRESS": "unix:path=/run/user/42759/bus", "LOGNAME": "ischurov", "_": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/node", "XDG_SESSION_CLASS": "user", "VSCODE_CLI_REQUIRE_TOKEN": "c4aecf0f-d719-473a-b5a9-22be0ada2f71", "XDG_SESSION_ID": "16148", "VSCODE_AGENT_FOLDER": "/home/ischurov/.vscode-server", "XDG_RUNTIME_DIR": "/run/user/42759", "SSL_CERT_DIR": "/usr/lib/ssl/certs", "LANG": "en_US.UTF-8", "LOGURU_COLORIZE": "NO", "SSH_AUTH_SOCK": "/tmp/ssh-XXXXoYbodg/agent.870115", "SHELL": "/bin/bash", "PWD": "/home/ischurov", "LOADEDMODULES": "", "SSH_CONNECTION": "131.174.30.50 44142 131.174.30.108 22", "MANPATH": "/usr/local/slurm/share/man:/usr/local/openmpi/share/man:", "MODULEPATH": "/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)", "MODULESHOME": "/usr/share/modules", "VSCODE_HANDLES_SIGPIPE": "true", "BASH_FUNC_ml%%": "() { module ml \"$@\"\n}", "BASH_FUNC_module%%": "() { eval `/usr/bin/tclsh8.6 /usr/lib/x86_64-linux-gnu/modulecmd.tcl bash \"$@\"`;\n _mlstatus=$?;\n return $_mlstatus\n}", "VSCODE_AMD_ENTRYPOINT": "vs/workbench/api/node/extensionHostProcess", "VSCODE_HANDLES_UNCAUGHT_ERRORS": "true", "VSCODE_NLS_CONFIG": "{\"locale\":\"en\",\"osLocale\":\"en\",\"availableLanguages\":{}}", "BROWSER": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/helpers/browser.sh", "VSCODE_CWD": "/home/ischurov", "ELECTRON_RUN_AS_NODE": "1", "VSCODE_IPC_HOOK_CLI": "/run/user/42759/vscode-ipc-d8377884-d5ab-49c6-b28e-7cdb181d8621.sock", "PATH": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin" } 2024-04-17 14:36:59.664 [info] > pyenv which python 2024-04-17 14:36:59.664 [info] cwd: . 2024-04-17 14:36:59.664 [debug] [Error: Command failed: pyenv which python /bin/sh: 1: pyenv: not found at ChildProcess.exithandler (node:child_process:422:12) at ChildProcess.emit (node:events:529:35) at maybeClose (node:internal/child_process:1098:16) at Socket. (node:internal/child_process:450:11)
at Socket.emit (node:events:517:28)
at Pipe. (node:net:350:12)] {
code: 127,
killed: false,
signal: null,
cmd: 'pyenv which python'
}
2024-04-17 14:36:59.664 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:00.296 [debug] Searching for conda.
2024-04-17 14:37:00.296 [debug] Probing conda binary: conda
2024-04-17 14:37:00.322 [info] > conda info --json
2024-04-17 14:37:00.328 [debug] Failed to spawn conda binary conda Error: spawn conda ENOENT
at Process.ChildProcess._handle.onexit (node:internal/child_process:284:19)
at onErrorNT (node:internal/child_process:477:16)
at processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -2,
code: 'ENOENT',
syscall: 'spawn conda',
path: 'conda',
spawnargs: [ 'info', '--json' ]
}
2024-04-17 14:37:00.337 [warning] Shell integration may not be active, environment activated may be overridden by the shell.
2024-04-17 14:37:00.337 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:00.338 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:00.380 [debug] Extension ms-toolsai.jupyter accessed onDidChangeEnvironments with args: undefined
2024-04-17 14:37:00.380 [debug] Extension ms-toolsai.jupyter accessed onDidEnvironmentVariablesChange with args: undefined
2024-04-17 14:37:00.381 [debug] Extension ms-toolsai.jupyter accessed getEnvironmentVariables with args: undefined
2024-04-17 14:37:00.382 [debug] Extension ms-toolsai.jupyter accessed onDidEnvironmentVariablesChange with args: undefined
2024-04-17 14:37:00.383 [debug] Extension ms-toolsai.jupyter accessed onDidChangeEnvironments with args: undefined
2024-04-17 14:37:00.383 [debug] Extension ms-toolsai.jupyter accessed onDidChangeActiveEnvironmentPath with args: undefined
2024-04-17 14:37:00.384 [debug] Extension ms-toolsai.jupyter accessed onDidChangeEnvironments with args: undefined
2024-04-17 14:37:00.385 [debug] Extension ms-toolsai.jupyter accessed resolveEnvironment with args: "/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"
2024-04-17 14:37:00.386 [debug] Extension ms-toolsai.jupyter accessed resolveEnvironment with args: "/home/ischurov/.conda/envs/latsym/bin/python"
2024-04-17 14:37:00.386 [debug] Extension ms-toolsai.jupyter accessed resolveEnvironment with args: "/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python"
2024-04-17 14:37:00.478 [debug] Probing conda binary: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:00.502 [info] > /opt/jupyter-conda/bin/conda info --json
2024-04-17 14:37:00.727 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:00.738 [warning] Identifier for virt-virtualenv failed to identify /home/ischurov/.conda/envs/latsym/bin/python [Error: ENOENT: no such file or directory, scandir '/home/ischurov/.conda/envs/latsym/bin'] {
errno: -2,
code: 'ENOENT',
syscall: 'scandir',
path: '/home/ischurov/.conda/envs/latsym/bin'
}
2024-04-17 14:37:00.776 [debug] Extension ms-python.black-formatter accessed onDidChangeActiveEnvironmentPath with args: undefined
2024-04-17 14:37:00.776 [debug] Extension ms-python.black-formatter accessed resolveEnvironment with args: {"id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","path":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"}
2024-04-17 14:37:00.776 [debug] Extension ms-python.black-formatter accessed getActiveEnvironmentPath with args: undefined
2024-04-17 14:37:00.791 [debug] Failed to get file info for /home/ischurov/.conda/envs/latsym/bin/python [Error: ENOENT: no such file or directory, lstat '/home/ischurov/.conda/envs/latsym/bin/python'] {
errno: -2,
code: 'ENOENT',
syscall: 'lstat',
path: '/home/ischurov/.conda/envs/latsym/bin/python'
}
2024-04-17 14:37:00.891 [info] > ~/.conda/envs/latsym/bin/python -I ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
2024-04-17 14:37:00.955 [error] Error: Command failed: /home/ischurov/.conda/envs/latsym/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
/bin/sh: 1: /home/ischurov/.conda/envs/latsym/bin/python: not found
at ChildProcess.exithandler (node:child_process:422:12)
at ChildProcess.emit (node:events:529:35)
at maybeClose (node:internal/child_process:1098:16)
at Socket. (node:internal/child_process:450:11)
at Socket.emit (node:events:517:28)
at Pipe. (node:net:350:12) {
code: 127,
killed: false,
signal: null,
cmd: '/home/ischurov/.conda/envs/latsym/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py'
}
2024-04-17 14:37:01.468 [debug] Delay Trigger[Test Configuration Change]: triggered=3, called=1
2024-04-17 14:37:01.665 [debug] /opt/jupyter-conda/bin/conda info --json: {
"GID": 42759,
"UID": 42759,
"active_prefix": null,
"active_prefix_name": null,
"av_data_dir": "/opt/jupyter-conda/etc/conda",
"av_metadata_url_base": null,
"channels": [
"https://repo.anaconda.com/pkgs/main/linux-64",
"https://repo.anaconda.com/pkgs/main/noarch",
"https://repo.anaconda.com/pkgs/r/linux-64",
"https://repo.anaconda.com/pkgs/r/noarch"
],
"conda_build_version": "3.21.8",
"conda_env_version": "4.13.0",
"conda_location": "/opt/jupyter-conda/lib/python3.9/site-packages/conda",
"conda_prefix": "/opt/jupyter-conda",
"conda_private": false,
"conda_shlvl": -1,
"conda_version": "4.13.0",
"config_files": [
"/home/ischurov/.condarc"
],
"default_prefix": "/opt/jupyter-conda",
"env_vars": {
"CIO_TEST": "",
"CONDA_ROOT": "/opt/jupyter-conda",
"CURL_CA_BUNDLE": "",
"MANPATH": "/usr/local/slurm/share/man:/usr/local/openmpi/share/man:",
"MODULEPATH": "/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)",
"PATH": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin",
"PYTHONIOENCODING": "utf-8",
"PYTHONUNBUFFERED": "1",
"REQUESTS_CA_BUNDLE": "",
"SSL_CERT_FILE": "/usr/lib/ssl/certs/ca-certificates.crt"
},
"envs": [
"/opt/jupyter-conda",
"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics",
"/vol/tcm10/ischurov/.conda/envs/latsym",
"/vol/tcm10/ischurov/.conda/envs/latsym2"
],
"envs_dirs": [
"/vol/tcm10/ischurov/.conda/envs",
"/home/ischurov/.conda/envs",
"/opt/jupyter-conda/envs"
],
"netrc_file": null,
"offline": false,
"pkgs_dirs": [
"/vol/tcm10/ischurov/.conda/pkgs"
],
"platform": "linux-64",
"python_version": "3.9.12.final.0",
"rc_path": "/home/ischurov/.condarc",
"requests_version": "2.27.1",
"root_prefix": "/opt/jupyter-conda",
"root_writable": false,
"site_dirs": [
"~/.local/lib/python3.6",
"~/.local/lib/python3.10"
],
"sys.executable": "/opt/jupyter-conda/bin/python",
"sys.prefix": "/opt/jupyter-conda",
"sys.version": "3.9.12 (main, Apr 5 2022, 06:56:58) \n[GCC 7.5.0]",
"sys_rc_path": "/opt/jupyter-conda/.condarc",
"user_agent": "conda/4.13.0 requests/2.27.1 CPython/3.9.12 Linux/5.19.0-46-generic ubuntu/22.04.2 glibc/2.35",
"user_rc_path": "/home/ischurov/.condarc",
"virtual_pkgs": [
[
"__linux",
"5.19.0",
"0"
],
[
"__glibc",
"2.35",
"0"
],
[
"__unix",
"0",
"0"
],
[
"__archspec",
"1",
"x86_64"
]
]
}
2024-04-17 14:37:01.665 [debug] Found conda via filesystem probing: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:01.673 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.676 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.678 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.681 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.683 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.702 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.705 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.706 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.707 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.708 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.709 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.710 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.710 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.710 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.711 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.736 [info] > /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python -I ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
2024-04-17 14:37:01.822 [debug] Received shell integration sequence for bash
2024-04-17 14:37:01.822 [info] Shell integration status changed, can confirm it's working.
2024-04-17 14:37:01.822 [debug] No cached env found for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.822 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:01.845 [info] > /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python -I ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
2024-04-17 14:37:01.852 [debug] Found interpreter for >> /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py <<: {"versionInfo":[3,10,8,"final",0],"sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]","is64Bit":true}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.854 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:01.866 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.866 [debug] Python API env change detected /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python add
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.867 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.867 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.867 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.867 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.867 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:01.867 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.872 [info] Python interpreter path: /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.879 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.879 [debug] Searching for conda.
2024-04-17 14:37:01.879 [debug] Searching for conda.
2024-04-17 14:37:01.880 [debug] Probing conda binary: conda
2024-04-17 14:37:01.884 [debug] Probing conda binary: conda
2024-04-17 14:37:01.884 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.928 [info] > conda info --json
2024-04-17 14:37:01.928 [info] shell: bash
2024-04-17 14:37:01.928 [info] > conda info --json
2024-04-17 14:37:01.953 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:01.965 [debug] Failed to spawn conda binary conda Error: spawn conda ENOENT
at Process.ChildProcess._handle.onexit (node:internal/child_process:284:19)
at onErrorNT (node:internal/child_process:477:16)
at processTicksAndRejections (node:internal/process/task_queues:82:21) {
errno: -2,
code: 'ENOENT',
syscall: 'spawn conda',
path: 'conda',
spawnargs: [ 'info', '--json' ]
}
2024-04-17 14:37:01.994 [debug] conda info --json:
2024-04-17 14:37:01.994 [debug] Failed to spawn conda binary conda SyntaxError: Unexpected end of JSON input
at JSON.parse ()
at _.getInfoImpl (/home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/out/client/extension.js:2:571200)
at Function.locate (/home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/out/client/extension.js:2:570310)
at k.getActivatedEnvironmentVariablesImpl (/home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/out/client/extension.js:2:390300)
2024-04-17 14:37:02.032 [debug] Received shell integration sequence for bash
2024-04-17 14:37:02.052 [debug] Probing conda binary: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:02.078 [info] > /opt/jupyter-conda/bin/conda info --json
2024-04-17 14:37:02.142 [debug] Probing conda binary: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:02.168 [info] > /opt/jupyter-conda/bin/conda info --json
2024-04-17 14:37:02.169 [info] shell: bash
2024-04-17 14:37:02.173 [debug] Best effort version B for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":3,"minor":1,"micro":-1}
2024-04-17 14:37:02.190 [debug] Best effort version C for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:02.190 [debug] Extension ms-python.black-formatter accessed getActiveEnvironmentPath with args: undefined
2024-04-17 14:37:02.190 [debug] Extension ms-python.black-formatter accessed resolveEnvironment with args: {"id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","path":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"}
2024-04-17 14:37:02.191 [debug] Extension ms-python.vscode-pylance accessed onDidChangeActiveEnvironmentPath with args: undefined
2024-04-17 14:37:02.191 [debug] Extension ms-python.black-formatter accessed resolveEnvironment with args: {"id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","path":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"}
2024-04-17 14:37:02.191 [debug] Extension ms-python.black-formatter accessed getActiveEnvironmentPath with args: undefined
2024-04-17 14:37:02.191 [debug] Extension ms-python.vscode-pylance accessed onDidEnvironmentVariablesChange with args: undefined
2024-04-17 14:37:02.192 [debug] Best effort version D for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python {"major":-1,"minor":-1,"micro":-1,"release":{"level":"final","serial":-1}}
2024-04-17 14:37:02.193 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python for {"name":"latsym2","location":"/vol/tcm10/ischurov/.conda/envs/latsym2","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"","ctime":1673364955359,"mtime":1673364955359},"display":"Python 3.1.x ('latsym2')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","detailedDisplayName":"Python 3.1.x ('latsym2': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/latsym2","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":8,"release":{"level":"final","serial":0},"sysVersion":"3.10.8 | packaged by conda-forge | (main, Nov 22 2022, 08:26:04) [GCC 10.4.0]"}}
2024-04-17 14:37:02.194 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python using downstream locator
2024-04-17 14:37:02.194 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:02.230 [debug] Received shell integration sequence for bash
2024-04-17 14:37:02.355 [debug] Found interpreter for >> /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py <<: {"versionInfo":[3,10,9,"final",0],"sysPrefix":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics","sysVersion":"3.10.9 (main, Jan 11 2023, 15:21:40) [GCC 11.2.0]","is64Bit":true}
2024-04-17 14:37:02.356 [debug] Environment resolver resolved /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python for {"name":"chromosome_tectonics","location":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics","kind":"virt-conda","executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python","sysPrefix":"","ctime":1676387019895,"mtime":1676387019895},"display":"Python 3.1.x ('chromosome_tectonics')","version":{"major":3,"minor":1,"micro":-1},"arch":1,"distro":{"org":"Anaconda, Inc."},"source":[],"type":"Conda","id":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python","detailedDisplayName":"Python 3.1.x ('chromosome_tectonics': conda)"} to {"arch":3,"executable":{"filename":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python","sysPrefix":"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics","mtime":-1,"ctime":-1},"version":{"major":3,"minor":10,"micro":9,"release":{"level":"final","serial":0},"sysVersion":"3.10.9 (main, Jan 11 2023, 15:21:40) [GCC 11.2.0]"}}
2024-04-17 14:37:02.359 [debug] Resolved /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python using downstream locator
2024-04-17 14:37:02.359 [debug] Python API env change detected /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python add
2024-04-17 14:37:02.360 [debug] Flushing env to cache /vol/tcm10/ischurov/.conda/envs/chromosome_tectonics/bin/python
2024-04-17 14:37:02.985 [info] > ~/.conda/envs/latsym/bin/python -I ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
2024-04-17 14:37:03.054 [error] Error: Command failed: /home/ischurov/.conda/envs/latsym/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py
/bin/sh: 1: /home/ischurov/.conda/envs/latsym/bin/python: not found
at ChildProcess.exithandler (node:child_process:422:12)
at ChildProcess.emit (node:events:529:35)
at maybeClose (node:internal/child_process:1098:16)
at Socket. (node:internal/child_process:450:11)
at Socket.emit (node:events:517:28)
at Pipe. (node:net:350:12) {
code: 127,
killed: false,
signal: null,
cmd: '/home/ischurov/.conda/envs/latsym/bin/python -I /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/interpreterInfo.py'
}
2024-04-17 14:37:03.054 [debug] Environment resolver resolved /home/ischurov/.conda/envs/latsym/bin/python for {"name":"","location":"","kind":"unknown","executable":{"filename":"/home/ischurov/.conda/envs/latsym/bin/python","sysPrefix":"","ctime":-1,"mtime":-1},"display":"Python 2.7.x","version":{"major":2,"minor":7,"micro":-1},"arch":1,"distro":{"org":""},"source":[],"id":"/home/ischurov/.conda/envs/latsym/bin/python","detailedDisplayName":"Python 2.7.x"} to undefined
2024-04-17 14:37:03.054 [debug] Resolved /home/ischurov/.conda/envs/latsym/bin/python using downstream locator
2024-04-17 14:37:03.195 [debug] /opt/jupyter-conda/bin/conda info --json: {
"GID": 42759,
"UID": 42759,
"active_prefix": null,
"active_prefix_name": null,
"av_data_dir": "/opt/jupyter-conda/etc/conda",
"av_metadata_url_base": null,
"channels": [
"https://repo.anaconda.com/pkgs/main/linux-64",
"https://repo.anaconda.com/pkgs/main/noarch",
"https://repo.anaconda.com/pkgs/r/linux-64",
"https://repo.anaconda.com/pkgs/r/noarch"
],
"conda_build_version": "3.21.8",
"conda_env_version": "4.13.0",
"conda_location": "/opt/jupyter-conda/lib/python3.9/site-packages/conda",
"conda_prefix": "/opt/jupyter-conda",
"conda_private": false,
"conda_shlvl": -1,
"conda_version": "4.13.0",
"config_files": [
"/home/ischurov/.condarc"
],
"default_prefix": "/opt/jupyter-conda",
"env_vars": {
"CIO_TEST": "",
"CONDA_ROOT": "/opt/jupyter-conda",
"CURL_CA_BUNDLE": "",
"MANPATH": "/usr/local/slurm/share/man:/usr/local/openmpi/share/man:",
"MODULEPATH": "/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)",
"PATH": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin",
"PYTHONIOENCODING": "utf-8",
"PYTHONUNBUFFERED": "1",
"REQUESTS_CA_BUNDLE": "",
"SSL_CERT_FILE": "/usr/lib/ssl/certs/ca-certificates.crt"
},
"envs": [
"/opt/jupyter-conda",
"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics",
"/vol/tcm10/ischurov/.conda/envs/latsym",
"/vol/tcm10/ischurov/.conda/envs/latsym2"
],
"envs_dirs": [
"/vol/tcm10/ischurov/.conda/envs",
"/home/ischurov/.conda/envs",
"/opt/jupyter-conda/envs"
],
"netrc_file": null,
"offline": false,
"pkgs_dirs": [
"/vol/tcm10/ischurov/.conda/pkgs"
],
"platform": "linux-64",
"python_version": "3.9.12.final.0",
"rc_path": "/home/ischurov/.condarc",
"requests_version": "2.27.1",
"root_prefix": "/opt/jupyter-conda",
"root_writable": false,
"site_dirs": [
"~/.local/lib/python3.6",
"~/.local/lib/python3.10"
],
"sys.executable": "/opt/jupyter-conda/bin/python",
"sys.prefix": "/opt/jupyter-conda",
"sys.version": "3.9.12 (main, Apr 5 2022, 06:56:58) \n[GCC 7.5.0]",
"sys_rc_path": "/opt/jupyter-conda/.condarc",
"user_agent": "conda/4.13.0 requests/2.27.1 CPython/3.9.12 Linux/5.19.0-46-generic ubuntu/22.04.2 glibc/2.35",
"user_rc_path": "/home/ischurov/.condarc",
"virtual_pkgs": [
[
"__linux",
"5.19.0",
"0"
],
[
"__glibc",
"2.35",
"0"
],
[
"__unix",
"0",
"0"
],
[
"__archspec",
"1",
"x86_64"
]
]
}
2024-04-17 14:37:03.195 [debug] Found conda via filesystem probing: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:03.226 [debug] Activating Environment to capture Environment variables, /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.226 [info] > /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.226 [info] shell: bash
2024-04-17 14:37:03.286 [debug] /opt/jupyter-conda/bin/conda info --json: {
"GID": 42759,
"UID": 42759,
"active_prefix": null,
"active_prefix_name": null,
"av_data_dir": "/opt/jupyter-conda/etc/conda",
"av_metadata_url_base": null,
"channels": [
"https://repo.anaconda.com/pkgs/main/linux-64",
"https://repo.anaconda.com/pkgs/main/noarch",
"https://repo.anaconda.com/pkgs/r/linux-64",
"https://repo.anaconda.com/pkgs/r/noarch"
],
"conda_build_version": "3.21.8",
"conda_env_version": "4.13.0",
"conda_location": "/opt/jupyter-conda/lib/python3.9/site-packages/conda",
"conda_prefix": "/opt/jupyter-conda",
"conda_private": false,
"conda_shlvl": -1,
"conda_version": "4.13.0",
"config_files": [
"/home/ischurov/.condarc"
],
"default_prefix": "/opt/jupyter-conda",
"env_vars": {
"CIO_TEST": "",
"CONDA_ROOT": "/opt/jupyter-conda",
"CURL_CA_BUNDLE": "",
"MANPATH": "/usr/local/slurm/share/man:/usr/local/openmpi/share/man:",
"MODULEPATH": "/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)",
"PATH": "/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin",
"PYTHONIOENCODING": "utf-8",
"PYTHONUNBUFFERED": "1",
"REQUESTS_CA_BUNDLE": "",
"SSL_CERT_FILE": "/usr/lib/ssl/certs/ca-certificates.crt"
},
"envs": [
"/opt/jupyter-conda",
"/vol/tcm10/ischurov/.conda/envs/chromosome_tectonics",
"/vol/tcm10/ischurov/.conda/envs/latsym",
"/vol/tcm10/ischurov/.conda/envs/latsym2"
],
"envs_dirs": [
"/vol/tcm10/ischurov/.conda/envs",
"/home/ischurov/.conda/envs",
"/opt/jupyter-conda/envs"
],
"netrc_file": null,
"offline": false,
"pkgs_dirs": [
"/vol/tcm10/ischurov/.conda/pkgs"
],
"platform": "linux-64",
"python_version": "3.9.12.final.0",
"rc_path": "/home/ischurov/.condarc",
"requests_version": "2.27.1",
"root_prefix": "/opt/jupyter-conda",
"root_writable": false,
"site_dirs": [
"~/.local/lib/python3.6",
"~/.local/lib/python3.10"
],
"sys.executable": "/opt/jupyter-conda/bin/python",
"sys.prefix": "/opt/jupyter-conda",
"sys.version": "3.9.12 (main, Apr 5 2022, 06:56:58) \n[GCC 7.5.0]",
"sys_rc_path": "/opt/jupyter-conda/.condarc",
"user_agent": "conda/4.13.0 requests/2.27.1 CPython/3.9.12 Linux/5.19.0-46-generic ubuntu/22.04.2 glibc/2.35",
"user_rc_path": "/home/ischurov/.condarc",
"virtual_pkgs": [
[
"__linux",
"5.19.0",
"0"
],
[
"__glibc",
"2.35",
"0"
],
[
"__unix",
"0",
"0"
],
[
"__archspec",
"1",
"x86_64"
]
]
}
2024-04-17 14:37:03.286 [debug] Found conda via filesystem probing: /opt/jupyter-conda/bin/conda
2024-04-17 14:37:03.342 [debug] Activating Environment to capture Environment variables, /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.343 [info] > /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.343 [info] shell: bash
2024-04-17 14:37:03.343 [debug] Activating Environment to capture Environment variables, /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.343 [info] > /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:03.343 [info] shell: bash
2024-04-17 14:37:03.380 [info] Starting Pylance language server.
2024-04-17 14:37:03.383 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:03.395 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:03.397 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:03.458 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined
2024-04-17 14:37:03.458 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","path":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"}
2024-04-17 14:37:03.459 [debug] Extension ms-python.vscode-pylance accessed getActiveEnvironmentPath with args: undefined
2024-04-17 14:37:03.459 [debug] Extension ms-python.vscode-pylance accessed getEnvironmentVariables with args: undefined
2024-04-17 14:37:03.460 [debug] Extension ms-python.vscode-pylance accessed resolveEnvironment with args: {"id":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python","path":"/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python"}
2024-04-17 14:37:04.777 [debug] Terminal shell path '/bin/bash' identified as shell 'bash'
2024-04-17 14:37:04.777 [debug] Shell identified as bash
2024-04-17 14:37:04.777 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.420 [debug] Activated environment variables for undefined {
SHELL: '/bin/bash',
PYTHONUNBUFFERED: '1',
CONDA_EXE: '/opt/jupyter-conda/bin/conda',
_CE_M: '',
SSH_AUTH_SOCK: '/tmp/ssh-XXXXoYbodg/agent.870115',
ELECTRON_RUN_AS_NODE: '1',
VSCODE_AMD_ENTRYPOINT: 'vs/workbench/api/node/extensionHostProcess',
PWD: '/home/ischurov',
GSETTINGS_SCHEMA_DIR: '/vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas',
LOGNAME: 'ischurov',
CONDA_ROOT: '/opt/jupyter-conda',
XDG_SESSION_TYPE: 'tty',
CONDA_PREFIX: '/vol/tcm10/ischurov/.conda/envs/latsym2',
MODULESHOME: '/usr/share/modules',
MANPATH: '/usr/local/slurm/share/man:/usr/local/openmpi/share/man:',
GSETTINGS_SCHEMA_DIR_CONDA_BACKUP: '',
MOTD_SHOWN: 'pam',
HOME: '/home/ischurov',
LANG: 'en_US.UTF-8',
SSL_CERT_DIR: '/usr/lib/ssl/certs',
CONDA_PROMPT_MODIFIER: '(latsym2) ',
VSCODE_AGENT_FOLDER: '/home/ischurov/.vscode-server',
SSH_CONNECTION: '131.174.30.50 44142 131.174.30.108 22',
XDG_SESSION_CLASS: 'user',
VSCODE_HANDLES_SIGPIPE: 'true',
_CE_CONDA: '',
USER: 'ischurov',
PYTHONIOENCODING: 'utf-8',
CONDA_SHLVL: '2',
LOADEDMODULES: '',
SHLVL: '2',
VSCODE_CWD: '/home/ischurov',
XDG_SESSION_ID: '16148',
CONDA_PYTHON_EXE: '/opt/jupyter-conda/bin/python',
XDG_RUNTIME_DIR: '/run/user/42759',
SSL_CERT_FILE: '/usr/lib/ssl/certs/ca-certificates.crt',
LOGURU_COLORIZE: 'NO',
SSH_CLIENT: '131.174.30.50 44142 22',
CONDA_DEFAULT_ENV: 'latsym2',
VSCODE_CLI_REQUIRE_TOKEN: 'c4aecf0f-d719-473a-b5a9-22be0ada2f71',
BROWSER: '/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/helpers/browser.sh',
PATH: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin:/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin',
MODULEPATH: '/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)',
DBUS_SESSION_BUS_ADDRESS: 'unix:path=/run/user/42759/bus',
VSCODE_NLS_CONFIG: '{"locale":"en","osLocale":"en","availableLanguages":{}}',
CONDA_PREFIX_1: '/opt/jupyter-conda',
VSCODE_HANDLES_UNCAUGHT_ERRORS: 'true',
OLDPWD: '/home/ischurov/.vscode-server',
MODULES_CMD: '/usr/lib/x86_64-linux-gnu/modulecmd.tcl',
VSCODE_IPC_HOOK_CLI: '/run/user/42759/vscode-ipc-d8377884-d5ab-49c6-b28e-7cdb181d8621.sock',
'BASH_FUNC_ml%%': '() { module ml "$@"\n}',
'BASH_FUNC_module%%': '() { eval `/usr/bin/tclsh8.6 /usr/lib/x86_64-linux-gnu/modulecmd.tcl bash "$@"`;\n' +
' _mlstatus=$?;\n' +
' return $_mlstatus\n' +
'}',
_: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python'
}
2024-04-17 14:37:05.455 [info] > /usr/bin/python3 ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:05.455 [info] shell: other
2024-04-17 14:37:05.457 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.459 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.464 [info] Setting environment variable PYTHONUNBUFFERED in collection to 1 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_EXE in collection to /opt/jupyter-conda/bin/conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable _CE_M in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable GSETTINGS_SCHEMA_DIR in collection to /vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_ROOT in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_PREFIX in collection to /vol/tcm10/ischurov/.conda/envs/latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable GSETTINGS_SCHEMA_DIR_CONDA_BACKUP in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_PROMPT_MODIFIER in collection to (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable _CE_CONDA in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable PYTHONIOENCODING in collection to utf-8 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_SHLVL in collection to 2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_PYTHON_EXE in collection to /opt/jupyter-conda/bin/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_DEFAULT_ENV in collection to latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Prepending environment variable PATH in collection with /vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Setting environment variable CONDA_PREFIX_1 in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.464 [info] Prepending environment variable PS1 in collection with (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2024-04-17 14:37:05.464 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.542 [debug] Activated environment variables for undefined {
SHELL: '/bin/bash',
PYTHONUNBUFFERED: '1',
CONDA_EXE: '/opt/jupyter-conda/bin/conda',
_CE_M: '',
SSH_AUTH_SOCK: '/tmp/ssh-XXXXoYbodg/agent.870115',
ELECTRON_RUN_AS_NODE: '1',
VSCODE_AMD_ENTRYPOINT: 'vs/workbench/api/node/extensionHostProcess',
PWD: '/home/ischurov',
GSETTINGS_SCHEMA_DIR: '/vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas',
LOGNAME: 'ischurov',
CONDA_ROOT: '/opt/jupyter-conda',
XDG_SESSION_TYPE: 'tty',
CONDA_PREFIX: '/vol/tcm10/ischurov/.conda/envs/latsym2',
MODULESHOME: '/usr/share/modules',
MANPATH: '/usr/local/slurm/share/man:/usr/local/openmpi/share/man:',
GSETTINGS_SCHEMA_DIR_CONDA_BACKUP: '',
MOTD_SHOWN: 'pam',
HOME: '/home/ischurov',
LANG: 'en_US.UTF-8',
SSL_CERT_DIR: '/usr/lib/ssl/certs',
CONDA_PROMPT_MODIFIER: '(latsym2) ',
VSCODE_AGENT_FOLDER: '/home/ischurov/.vscode-server',
SSH_CONNECTION: '131.174.30.50 44142 131.174.30.108 22',
XDG_SESSION_CLASS: 'user',
VSCODE_HANDLES_SIGPIPE: 'true',
_CE_CONDA: '',
USER: 'ischurov',
PYTHONIOENCODING: 'utf-8',
CONDA_SHLVL: '2',
LOADEDMODULES: '',
SHLVL: '2',
VSCODE_CWD: '/home/ischurov',
XDG_SESSION_ID: '16148',
CONDA_PYTHON_EXE: '/opt/jupyter-conda/bin/python',
XDG_RUNTIME_DIR: '/run/user/42759',
SSL_CERT_FILE: '/usr/lib/ssl/certs/ca-certificates.crt',
LOGURU_COLORIZE: 'NO',
SSH_CLIENT: '131.174.30.50 44142 22',
CONDA_DEFAULT_ENV: 'latsym2',
VSCODE_CLI_REQUIRE_TOKEN: 'c4aecf0f-d719-473a-b5a9-22be0ada2f71',
BROWSER: '/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/helpers/browser.sh',
PATH: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin:/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin',
MODULEPATH: '/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)',
DBUS_SESSION_BUS_ADDRESS: 'unix:path=/run/user/42759/bus',
VSCODE_NLS_CONFIG: '{"locale":"en","osLocale":"en","availableLanguages":{}}',
CONDA_PREFIX_1: '/opt/jupyter-conda',
VSCODE_HANDLES_UNCAUGHT_ERRORS: 'true',
OLDPWD: '/home/ischurov/.vscode-server',
MODULES_CMD: '/usr/lib/x86_64-linux-gnu/modulecmd.tcl',
VSCODE_IPC_HOOK_CLI: '/run/user/42759/vscode-ipc-d8377884-d5ab-49c6-b28e-7cdb181d8621.sock',
'BASH_FUNC_ml%%': '() { module ml "$@"\n}',
'BASH_FUNC_module%%': '() { eval `/usr/bin/tclsh8.6 /usr/lib/x86_64-linux-gnu/modulecmd.tcl bash "$@"`;\n' +
' _mlstatus=$?;\n' +
' return $_mlstatus\n' +
'}',
_: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python'
}
2024-04-17 14:37:05.542 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.542 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.547 [info] Setting environment variable PYTHONUNBUFFERED in collection to 1 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.547 [info] Setting environment variable CONDA_EXE in collection to /opt/jupyter-conda/bin/conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.547 [info] Setting environment variable _CE_M in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.547 [info] Setting environment variable GSETTINGS_SCHEMA_DIR in collection to /vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.547 [info] Setting environment variable CONDA_ROOT in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_PREFIX in collection to /vol/tcm10/ischurov/.conda/envs/latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable GSETTINGS_SCHEMA_DIR_CONDA_BACKUP in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_PROMPT_MODIFIER in collection to (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable _CE_CONDA in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable PYTHONIOENCODING in collection to utf-8 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_SHLVL in collection to 2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_PYTHON_EXE in collection to /opt/jupyter-conda/bin/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_DEFAULT_ENV in collection to latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Prepending environment variable PATH in collection with /vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Setting environment variable CONDA_PREFIX_1 in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.548 [info] Prepending environment variable PS1 in collection with (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2024-04-17 14:37:05.548 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.549 [info] Send text to terminal: /usr/bin/python3 /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariablesToFile.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/deactivate/bash/envVars.txt
2024-04-17 14:37:05.560 [debug] Time taken to get env vars using terminal is 11ms
2024-04-17 14:37:05.567 [debug] Activated environment variables for undefined {
SHELL: '/bin/bash',
PYTHONUNBUFFERED: '1',
CONDA_EXE: '/opt/jupyter-conda/bin/conda',
_CE_M: '',
SSH_AUTH_SOCK: '/tmp/ssh-XXXXoYbodg/agent.870115',
ELECTRON_RUN_AS_NODE: '1',
VSCODE_AMD_ENTRYPOINT: 'vs/workbench/api/node/extensionHostProcess',
PWD: '/home/ischurov',
GSETTINGS_SCHEMA_DIR: '/vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas',
LOGNAME: 'ischurov',
CONDA_ROOT: '/opt/jupyter-conda',
XDG_SESSION_TYPE: 'tty',
CONDA_PREFIX: '/vol/tcm10/ischurov/.conda/envs/latsym2',
MODULESHOME: '/usr/share/modules',
MANPATH: '/usr/local/slurm/share/man:/usr/local/openmpi/share/man:',
GSETTINGS_SCHEMA_DIR_CONDA_BACKUP: '',
MOTD_SHOWN: 'pam',
HOME: '/home/ischurov',
LANG: 'en_US.UTF-8',
SSL_CERT_DIR: '/usr/lib/ssl/certs',
CONDA_PROMPT_MODIFIER: '(latsym2) ',
VSCODE_AGENT_FOLDER: '/home/ischurov/.vscode-server',
SSH_CONNECTION: '131.174.30.50 44142 131.174.30.108 22',
XDG_SESSION_CLASS: 'user',
VSCODE_HANDLES_SIGPIPE: 'true',
_CE_CONDA: '',
USER: 'ischurov',
PYTHONIOENCODING: 'utf-8',
CONDA_SHLVL: '2',
LOADEDMODULES: '',
SHLVL: '2',
VSCODE_CWD: '/home/ischurov',
XDG_SESSION_ID: '16148',
CONDA_PYTHON_EXE: '/opt/jupyter-conda/bin/python',
XDG_RUNTIME_DIR: '/run/user/42759',
SSL_CERT_FILE: '/usr/lib/ssl/certs/ca-certificates.crt',
LOGURU_COLORIZE: 'NO',
SSH_CLIENT: '131.174.30.50 44142 22',
CONDA_DEFAULT_ENV: 'latsym2',
VSCODE_CLI_REQUIRE_TOKEN: 'c4aecf0f-d719-473a-b5a9-22be0ada2f71',
BROWSER: '/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/helpers/browser.sh',
PATH: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin:/home/ischurov/.vscode-server/cli/servers/Stable-e170252f762678dec6ca2cc69aba1570769a5d39/server/bin/remote-cli:/home/ischurov/.local/bin:/home/ischurov/.local/bin:/usr/local/slurm/bin:/usr/local/openmpi/bin:/usr/local/hwloc/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/cuda/bin:/opt/dell/srvadmin/bin',
MODULEPATH: '/etc/environment-modules/modules:/usr/share/modules/versions:/usr/share/modules/$MODULE_VERSION/modulefiles:/usr/share/modules/modulefiles:/opt/intel/oneapi/modulefiles:$(modules_lines)',
DBUS_SESSION_BUS_ADDRESS: 'unix:path=/run/user/42759/bus',
VSCODE_NLS_CONFIG: '{"locale":"en","osLocale":"en","availableLanguages":{}}',
CONDA_PREFIX_1: '/opt/jupyter-conda',
VSCODE_HANDLES_UNCAUGHT_ERRORS: 'true',
OLDPWD: '/home/ischurov/.vscode-server',
MODULES_CMD: '/usr/lib/x86_64-linux-gnu/modulecmd.tcl',
VSCODE_IPC_HOOK_CLI: '/run/user/42759/vscode-ipc-d8377884-d5ab-49c6-b28e-7cdb181d8621.sock',
'BASH_FUNC_ml%%': '() { module ml "$@"\n}',
'BASH_FUNC_module%%': '() { eval `/usr/bin/tclsh8.6 /usr/lib/x86_64-linux-gnu/modulecmd.tcl bash "$@"`;\n' +
' _mlstatus=$?;\n' +
' return $_mlstatus\n' +
'}',
_: '/vol/tcm10/ischurov/.conda/envs/latsym2/bin/python'
}
2024-04-17 14:37:05.568 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.568 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:05.572 [info] Setting environment variable PYTHONUNBUFFERED in collection to 1 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_EXE in collection to /opt/jupyter-conda/bin/conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable _CE_M in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable GSETTINGS_SCHEMA_DIR in collection to /vol/tcm10/ischurov/.conda/envs/latsym2/share/glib-2.0/schemas {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_ROOT in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_PREFIX in collection to /vol/tcm10/ischurov/.conda/envs/latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable GSETTINGS_SCHEMA_DIR_CONDA_BACKUP in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_PROMPT_MODIFIER in collection to (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable _CE_CONDA in collection to {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable PYTHONIOENCODING in collection to utf-8 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_SHLVL in collection to 2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_PYTHON_EXE in collection to /opt/jupyter-conda/bin/python {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_DEFAULT_ENV in collection to latsym2 {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Prepending environment variable PATH in collection with /vol/tcm10/ischurov/.conda/envs/latsym2/bin:/opt/jupyter-conda/condabin: {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Setting environment variable CONDA_PREFIX_1 in collection to /opt/jupyter-conda {"applyAtShellIntegration":true,"applyAtProcessCreation":true}
2024-04-17 14:37:05.572 [info] Prepending environment variable PS1 in collection with (latsym2) {"applyAtShellIntegration":true,"applyAtProcessCreation":false}
2024-04-17 14:37:05.572 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:06.852 [debug] Received shell integration sequence for bash
2024-04-17 14:37:06.925 [debug] Received shell integration sequence for bash
2024-04-17 14:37:17.804 [debug] Received shell integration sequence for bash
2024-04-17 14:37:22.442 [debug] Testing: Refreshing all test data
2024-04-17 14:37:22.452 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:22.454 [info] Discover tests for workspace name: testing_tests - uri: /home/ischurov/tcm10/testing_tests
2024-04-17 14:37:22.454 [info] Running discovery for unittest using the new test adapter.
2024-04-17 14:37:22.455 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:22.487 [debug] Activating Environment to capture Environment variables, /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:22.487 [info] > /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/printEnvVariables.py
2024-04-17 14:37:22.487 [info] shell: bash
2024-04-17 14:37:24.594 [debug] Found cached env for /vol/tcm10/ischurov/.conda/envs/latsym2/bin/python
2024-04-17 14:37:24.595 [debug] Found executable within conda env {"name":"latsym2","prefix":"/vol/tcm10/ischurov/.conda/envs/latsym2"}
2024-04-17 14:37:24.625 [info] Discovering unittest tests for workspace /home/ischurov/tcm10/testing_tests with arguments: /home/ischurov/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/unittestadapter/discovery.py,--udiscovery,-v,-s,./test,-p,test_*.py
2024-04-17 14:37:24.625 [info] > /opt/jupyter-conda/bin/conda run -n latsym2 --no-capture-output python ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/get_output_via_markers.py ~/.vscode-server/extensions/ms-python.python-2024.4.1/python_files/unittestadapter/discovery.py --udiscovery -v -s ./test -p test_*.py
2024-04-17 14:37:24.625 [info] cwd: .
2024-04-17 14:37:26.688 [info] >>>PYTHON-EXEC-OUTPUT
2024-04-17 14:37:26.819 [info] Test server connected to a client.
2024-04-17 14:37:26.820 [info] Test server connected to a client.
2024-04-17 14:37:26.820 [info] <<
Extension version: 2024.4.1 VS Code version: Code 1.88.1 (e170252f762678dec6ca2cc69aba1570769a5d39, 2024-04-10T17:42:52.765Z) OS version: Darwin x64 22.1.0 Modes: Remote OS version: Linux x64 4.18.0-372.80.1.el8_6.x86_64 Remote OS version: Linux x64 5.19.0-46-generic
python.languageServer
setting: DefaultUser Settings
``` venvFolders: ""
languageServer: "Pylance"
testing
• pytestArgs: ""
• unittestArgs: ""
• unittestEnabled: true
```
Installed Extensions
|Extension Name|Extension Id|Version| |---|---|---| |Black Formatter|ms-python.black-formatter|2024.2.0| |GitHub Copilot|GitHub.copilot|1.180.0| |GitHub Copilot Chat|GitHub.copilot-chat|0.14.1| |JavaScript Debugger|ms-vscode.js-debug|1.88.0| |Jupyter|ms-toolsai.jupyter|2024.3.1| |Jupyter Cell Tags|ms-toolsai.vscode-jupyter-cell-tags|0.1.9| |Jupyter Notebook Renderers|ms-toolsai.jupyter-renderers|1.0.17| |Jupyter Slide Show|ms-toolsai.vscode-jupyter-slideshow|0.1.6| |Pylance|ms-python.vscode-pylance|2024.4.1| |Python|ms-python.python|2024.4.1| |Python Debugger|ms-python.debugpy|2024.4.0| |Rainbow CSV|mechatroner.rainbow-csv|3.11.0| |Table Visualizer for JavaScript Profiles|ms-vscode.vscode-js-profile-table|1.0.8|System Info
|Item|Value| |---|---| |CPUs|Intel(R) Core(TM) i5-8257U CPU @ 1.40GHz (8 x 1400)| |GPU Status|2d_canvas: enabledcanvas_oop_rasterization: disabled_off
direct_rendering_display_compositor: disabled_off_ok
gpu_compositing: enabled
multiple_raster_threads: enabled_on
opengl: enabled_on
rasterization: enabled
raw_draw: disabled_off_ok
skia_graphite: disabled_off
video_decode: enabled
video_encode: enabled
webgl: enabled
webgl2: enabled
webgpu: enabled| |Load (avg)|4, 5, 4| |Memory (System)|16.00GB (0.06GB free)| |Process Argv|--crash-reporter-id 6268c79f-ba03-42d2-bf4d-cd2dfec6306c| |Screen Reader|no| |VM|0%| |Item|Value| |---|---| |Remote|tcn1174localsnellius| |OS|Linux x64 4.18.0-372.80.1.el8_6.x86_64| |CPUs|AMD EPYC 9654 96-Core Processor (192 x 2399)| |Memory (System)|377.51GB (275.77GB free)| |VM|0%| |Item|Value| |---|---| |Remote|SSH: cn84| |OS|Linux x64 5.19.0-46-generic| |CPUs|Intel(R) Xeon(R) CPU E5-2630 v3 @ 2.40GHz (16 x 1199)| |Memory (System)|251.79GB (239.91GB free)| |VM|0%|
A/B Experiments
``` vsliv368cf:30146710 vspor879:30202332 vspor708:30202333 vspor363:30204092 vscod805:30301674 binariesv615:30325510 vsaa593cf:30376535 py29gd2263:30899288 c4g48928:30535728 azure-dev_surveyone:30548225 2i9eh265:30646982 962ge761:30959799 pythongtdpath:30769146 welcomedialog:30910333 pythonidxpt:30866567 pythonnoceb:30805159 asynctok:30898717 pythontestfixt:30902429 pythonregdiag2:30936856 pyreplss1:30897532 pythonmypyd1:30879173 pythoncet0:30885854 h48ei257:31000450 pythontbext0:30879054 accentitlementsc:30995553 dsvsc016:30899300 dsvsc017:30899301 dsvsc018:30899302 cppperfnew:31000557 d34g3935:30971562 fegfb526:30981948 bg6jg535:30979843 ccp2r3:30993541 dsvsc020:30976470 pythonait:31006305 666c4381:30973075 gee8j676:31009558 dsvsc021:30996838 g316j359:31013175 ```