Daily updates from Odoo
Thursday, March 3, 2022
1 change
Resolved issues and error corrections
This update fixes unstable automated tests in the project planning area so they produce consistent results. It helps maintain confidence in future changes by reducing random test failures that can slow down development and releases.
Original PR description
Prior to this commit: - Tests were failing in an indeterministic way due to queryCounters and calls to has_group() which seemed to be called 2 more times than usual in certain circumstances. After this commit: - The combined use of warmup decorator and invalidate_cache will ensure that the queryCounter is only made on relevant queries. - This commit also add missing messages in some asserts.