MB-X Bilibili Pipeline
6 days ago edf769cf27fedc5088a2b992fe97a91e200bf81e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
"""Expose the ledger suite to project-wide unittest discovery.
 
The substantive tests remain in the task's required directory.  That directory
is deliberately not a Python package because its name matches the product
package.
"""
 
from __future__ import annotations
 
import sys
from pathlib import Path
 
 
LEDGER_TEST_DIR = Path(__file__).with_name("stock_valuation_ledger")
if str(LEDGER_TEST_DIR) not in sys.path:
    sys.path.insert(0, str(LEDGER_TEST_DIR))
 
from test_ledger import LedgerMySQLTests, MarketSchemaUnitTests  # noqa: E402,F401
 
 
__all__ = ["LedgerMySQLTests", "MarketSchemaUnitTests"]