I'd like to skip test class decorated with the "at_install" odoo test tags while running my test using pytest.
Is there already some way to do so without adding extra line in code source ?
It works properly using Skip decorator @pytest.mark.skip(reason="Do not run at install test using pytest"), I was wondering if there are some plan to provide those tags as pytest marker to be able to filter those tests ?