Skip to content

Commit aee5a3c

Browse files
committed
test: add debug statement to uv_sync test
1 parent a7e2d55 commit aee5a3c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_venv_create.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,10 @@ T['create']['uv_sync'] = function()
4646
local python_version = vim.fn.system(
4747
[[python3 -c 'import sys; print(f"{sys.version_info[0]}.{sys.version_info[1]}", end="")']])
4848

49-
local dep_path = vim.fn.system([[examples/python_projects/uv/.venv/bin/python -c 'import sys; print(sys.path[-1], end="")']])
49+
local dep_path = vim.fn.system(
50+
[[examples/python_projects/uv/.venv/bin/python -c 'import sys; print(sys.path[-1], end="")']])
51+
52+
print("\ndep_path: " .. dep_path .. "\n")
5053
assert(string.find(dep_path, "python_projects/uv/.venv", 1, true))
5154

5255
local check_dir = vim.fs.joinpath(dep_path, "requests")

0 commit comments

Comments
 (0)