fix(test): drop the redundant sys.path.insert

CI runs these lanes as `python -m pytest` from the repo root, so the root is
already on sys.path and `tests._live_test_helpers` imports without help. The
insert only tripped the TQ003 test-quality budget.
This commit is contained in:
Yuneng Jiang 2026-09-16 14:26:16 -07:00
parent b478131701
commit ba6c9fa61d

View file

@ -1,11 +1,7 @@
import asyncio
import json
import os
import sys
import traceback
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..")))
from dotenv import load_dotenv
load_dotenv()