Skip to content

Commit 36b87b8

Browse files
authored
chore: fix llm_root when LLM_ROOT is not set (#4741)
Signed-off-by: Aurelien Chartier <[email protected]>
1 parent fe359d9 commit 36b87b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unittest/utils/cpp_paths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
def llm_root() -> _pl.Path:
1515
environ_root = _os.environ.get("LLM_ROOT", None)
1616
return _pl.Path(environ_root) if environ_root is not None else _pl.Path(
17-
__file__).resolve().parent.parent.parent
17+
__file__).resolve().parent.parent.parent.parent
1818

1919

2020
@pytest.fixture(scope="module")

0 commit comments

Comments
 (0)