We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d3b312 commit c8fd389Copy full SHA for c8fd389
tests/test_venv_create.lua
@@ -50,8 +50,8 @@ T['create']['uv_sync'] = function()
50
51
-- Have to do a special test for windows to check for requests being installed in .venv
52
if IS_WINDOWS then
53
- print(vim.fn.system([[ dir examples\python_projects\uv\.venv\Lib ]]))
54
- eq(vim.fn.isdirectory([[examples\python_projects\uv\.venv\Lib\requests]]), 1)
+ print(vim.fn.system([[ dir examples\python_projects\uv\.venv\Lib\site-packages ]]))
+ eq(vim.fn.isdirectory([[examples\python_projects\uv\.venv\Lib\site-packages\requests]]), 1)
55
return
56
end
57
0 commit comments