You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
442 B
13 lines
442 B
# Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
|
|
|
|
def setup_test_model(env, model_clses):
|
|
for model_cls in model_clses:
|
|
model_cls._build_model(env.registry, env.cr)
|
|
|
|
env.registry.setup_models(env.cr)
|
|
env.registry.init_models(
|
|
env.cr, [model_cls._name for model_cls in model_clses],
|
|
dict(env.context, update_custom_fields=True)
|
|
)
|