I want to run coverage test for my odoo module in docker, but I get the error.
first I run coverage test with command in docker :
coverage run /usr/bin/odoo -d odoo --db_host=db --db_user=odoo --db_password=odoo --stop-after-init --test-enable --init "My Library"
and the result :
Traceback (most recent call last):
file "/usr/bin/odoo", line 5, in <module>
import odoo
impostError: No module named odoo
what I should do?