Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IMP] New parameter 'tags' to enable filtering tests according to tags.
When tags are specified, the `module_list` is ignored because Odoo executes tests with an OR condition, meaning all tests will be executed. See examples below. Execute only test with tags `MyTag` `invoke test -m MyModule --tags=MyTag` Execute only a function called test_my_custom(Note use . to referral to function) `invoke test -m MyModule --tags=.test_my_custom` More examples https://www.odoo.com/documentation/17.0/es/developer/reference/backend/testing.html#examples
- Loading branch information