Cai
2026-08-23 46c6fe3116b88129407a20f1b107728e2e92ed38
1
2
3
4
5
6
7
8
9
10
11
12
"""Tests for the exact-BVID authenticated extension ingress.
 
Full project discovery imports this directory as ``bili_authenticated_extension``.
Extend that package path to the product directory so it cannot shadow the
actual implementation modules.
"""
 
from pathlib import Path
 
_product_package = Path(__file__).resolve().parents[2] / "bili_authenticated_extension"
if str(_product_package) not in __path__:
    __path__.append(str(_product_package))