File size: 247 Bytes
15b8951 | 1 2 3 4 5 6 7 8 | import os
import sys
# Đảm bảo `vlm.webconsole` import được khi chạy pytest từ bất kỳ đâu.
_SRC = os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", ".."))
if _SRC not in sys.path:
sys.path.insert(0, _SRC)
|