diff --git a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py index e0e32f154..30f844f3b 100644 --- a/account_move_line_stock_info/tests/test_account_move_line_stock_move.py +++ b/account_move_line_stock_info/tests/test_account_move_line_stock_move.py @@ -59,7 +59,7 @@ class TestAccountMoveLineStockInfo(TransactionCase): ) def _create_user(self, login, groups, company): - """ Create a user.""" + """Create a user.""" group_ids = [group.id for group in groups] user = self.res_users_model.with_context({"no_reset_password": True}).create( { diff --git a/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info b/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info new file mode 120000 index 000000000..3132f76c5 --- /dev/null +++ b/setup/account_move_line_stock_info/odoo/addons/account_move_line_stock_info @@ -0,0 +1 @@ +../../../../account_move_line_stock_info \ No newline at end of file diff --git a/setup/account_move_line_stock_info/setup.py b/setup/account_move_line_stock_info/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/account_move_line_stock_info/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)