Coverage for adhoc-cicd-odoo-odoo / odoo / modules / __init__.py: 100%
5 statements
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 18:15 +0000
« prev ^ index » next coverage.py v7.13.4, created at 2026-03-09 18:15 +0000
1# Part of Odoo. See LICENSE file for full copyright and licensing details.
2# ruff: noqa: F401
4""" Modules (also called addons) management.
6"""
7import odoo.init # import first for core setup
9from . import db # used directly during some migration scripts
11from . import module
12from .module import (
13 Manifest,
14 adapt_version,
15 get_module_path,
16 get_modules,
17 get_modules_with_version,
18 get_resource_from_path,
19 initialize_sys_path,
20 get_manifest,
21 load_openerp_module,
22 load_script
23)
25from . import registry