Skip to content

Commit 3c4a584

Browse files
committed
update project root and log path
1 parent e24523a commit 3c4a584

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/testrunner.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,10 +451,12 @@ def main():
451451
LOGGER.info(f"__file__: {__file__}")
452452
LOGGER.info(f"os.path.abspath(__file__): {os.path.abspath(__file__)}")
453453
LOGGER.info(f"os.getcwd(): {os.getcwd()}")
454-
455-
project_root = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
454+
455+
project_root = os.path.dirname(os.path.dirname(os.getcwd()))
456456
LOGGER.info(f"Project root: {project_root}")
457-
LOGGER.info(f"Final path trying to access: {os.path.join(project_root, '.infra', 'test', 'entrypoint.py')}")
457+
LOGGER.info(
458+
f"Final path trying to access: {os.path.join(project_root, '.infra', 'test', 'entrypoint.py')}"
459+
)
458460
else:
459461
LOGGER.info("Using legacy test system")
460462
test_vllm()

0 commit comments

Comments
 (0)