Inherits fusion.migration.wizard from fusion_accounting_migration and appends a _reports_bootstrap_step that confirms the 4 CORE report definitions (pnl, balance_sheet, trial_balance, general_ledger) exist after migration. Returns a structured result with expected, present, and missing report types. Hooked into action_run_migration via super(); failures are logged (warning) but never raised, so the migration chain remains tolerant of ordering between sub-modules. Adds fusion_accounting_migration to manifest depends. Tests: 1 new (test_migration_round_trip.py). Net 114 -> 115. Made-with: Cursor
25 lines
865 B
Python
25 lines
865 B
Python
from . import test_services_unit
|
|
from . import test_currency_conversion
|
|
from . import test_fusion_report
|
|
from . import test_line_resolver
|
|
from . import test_drill_down_resolver
|
|
from . import test_fusion_report_engine
|
|
from . import test_seeded_reports
|
|
from . import test_anomaly_detection
|
|
from . import test_commentary_prompt
|
|
from . import test_commentary_generator
|
|
from . import test_fusion_report_commentary
|
|
from . import test_fusion_report_anomaly
|
|
from . import test_reports_controller
|
|
from . import test_reports_adapter
|
|
from . import test_fusion_report_tools
|
|
from . import test_engine_property
|
|
from . import test_pnl_integration
|
|
from . import test_bs_tb_integration
|
|
from . import test_account_balance_mv
|
|
from . import test_cron
|
|
from . import test_pdf_export
|
|
from . import test_xlsx_export
|
|
from . import test_period_picker
|
|
from . import test_migration_round_trip
|