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.

14 lines
466 B

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2017 ACSONE SA/NV (<http://acsone.eu>)
  3. # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
  4. def setup_test_model(env, model_clses):
  5. for model_cls in model_clses:
  6. model_cls._build_model(env.registry, env.cr)
  7. env.registry.setup_models(env.cr)
  8. env.registry.init_models(
  9. env.cr, [model_cls._name for model_cls in model_clses],
  10. dict(env.context, update_custom_fields=True)
  11. )