"""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))
|