fix: broken import in test_kis_data_collection_v1.py (same root cause as F8)
Same class of bug as the earlier tools/run_kis_data_collection_v1.py fix this session: the module moved to src/quant_engine/deprecated/ but this test still imported the old path. Found by actually running pytest --collect-only on tests/unit/ (110 tests collect cleanly now, was failing at 1 error before). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -9,7 +9,7 @@ ROOT = Path(__file__).resolve().parents[2]
|
||||
if str(ROOT) not in sys.path:
|
||||
sys.path.insert(0, str(ROOT))
|
||||
|
||||
from src.quant_engine import kis_data_collection_v1 as kdc
|
||||
from src.quant_engine.deprecated import kis_data_collection_v1 as kdc
|
||||
|
||||
|
||||
class TestKisDataCollectionV1(unittest.TestCase):
|
||||
|
||||
Reference in New Issue
Block a user