fix: update test to use correct package path in monorepo

This commit is contained in:
Greyson Lalonde
2025-09-15 11:32:43 -04:00
parent 4dc2e48849
commit e1c7e6cc67

View File

@@ -20,7 +20,8 @@ def temp_project():
"""
(project_dir / "pyproject.toml").write_text(pyproject_content)
run_command(["uv", "add", "--editable", f"file://{Path.cwd().absolute()}"], project_dir)
tools_package_path = Path(__file__).parent.parent.absolute()
run_command(["uv", "add", "--editable", f"file://{tools_package_path}"], project_dir)
run_command(["uv", "sync"], project_dir)
yield project_dir