From fe5b6f5c35c3d13822d080a9c9e20df209f3a6c5 Mon Sep 17 00:00:00 2001 From: Simone Rubino Date: Mon, 10 Apr 2023 12:30:23 +0200 Subject: [PATCH] [IMP] use OCB as the default flavor for CI runs on Odoo <= 13.0 (#191) --- copier.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/copier.yml b/copier.yml index cd0b99f..b1b3f6e 100644 --- a/copier.yml +++ b/copier.yml @@ -78,7 +78,12 @@ ci: odoo_test_flavor: type: str - default: Both + default: |- + {% if odoo_version < 13.0 -%} + OCB + {%- else -%} + Both + {%- endif %} choices: - Odoo - OCB