Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] Set OCA_ENABLE_CHECKLOG_ODOO by default starting with Odoo 18.0 #271

Merged
merged 1 commit into from
Sep 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions copier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,11 @@ include_wkhtmltopdf:
Do you need to install wkhtmltopdf? Usually only needed if you're going to test PDF
report generation.

enable_checklog_odoo:
type: bool
default: "{% if odoo_version < 18.0 -%}no{% else %}yes{% endif %}"
help: Do you want to make tests fail on warnings?

github_enforce_dev_status_compatibility:
type: bool
default: yes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,9 @@ jobs:
INCLUDE: "{% raw %}${{ matrix.include }}{% endraw %}"
EXCLUDE: "{% raw %}${{ matrix.exclude }}{% endraw %}"
{%- endif %}
{%- if enable_checklog_odoo %}
OCA_ENABLE_CHECKLOG_ODOO: "1"
{%- endif %}
{%- for key, value in github_ci_extra_env.items() %}
{{ key }}: {{ value|to_json }}
{%- endfor %}
Expand Down
Loading