Daily updates from Odoo
Wednesday, August 20, 2025
2 changes
1 change
Code cleanup and technical improvements
This change moves tab block testing into the HTML builder area so it can be checked without pulling in broader website builder dependencies. It helps keep internal test coverage better organized and makes future validation faster and more focused, with no expected impact on end users.
Original PR description
**Description of the issue/feature this PR addresses:** The block_tab test module was located within website/builder tests, creating unnecessary dependencies when testing html_builder. **Current behavior before PR:** - block_tab tests are part of the website_builder test suite - Testing html_builder requires loading website dependencies - **Desired behavior after PR is merged:** - block_tab tests are located within html_builder tests and run successfully - html_builder can be tested independently without website_builder dependencies --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
1 change
Code cleanup and technical improvements
This update improves how report template errors are captured and explained, making it easier to identify where a problem occurred. It is mainly an internal quality improvement that should help teams diagnose and resolve report issues faster.