Coverage for adhoc-cicd-odoo-odoo / odoo / tools / constants.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-03-09 18:15 +0000

1# Part of Odoo. See LICENSE file for full copyright and licensing details. 

2 

3SCRIPT_EXTENSIONS = ('js',) 

4STYLE_EXTENSIONS = ('css', 'scss', 'sass', 'less') 

5TEMPLATE_EXTENSIONS = ('xml',) 

6ASSET_EXTENSIONS = SCRIPT_EXTENSIONS + STYLE_EXTENSIONS + TEMPLATE_EXTENSIONS 

7 

8SUPPORTED_DEBUGGER = {'pdb', 'ipdb', 'wdb', 'pudb'} 

9EXTERNAL_ASSET = object() 

10 

11PREFETCH_MAX = 1000 

12"""Maximum number of prefetched records""" 

13 

14GC_UNLINK_LIMIT = 100_000 

15"""Maximuum number of records to clean in a single transaction."""