Thursday, August 13, 2015
1 change
New functionality added to Odoo
This adds a new way for teams to run only specific groups of automated tests, such as server, web, or website tests. It should make testing faster and more focused during development and release checks, while preserving the option to run the full test suite when needed.
Original PR description
The possible values for --test=SPEC are comma-separated lists of: - yaml: Yaml tests only - python: server-side unit tests - web: web client tests - website: website tests Special case: --test=full is equivalent to --test=yaml,python,web,website Add categories 'python', 'web' and 'website' on existing tests.