diff --git a/document_page_tag/tests/test_document_page_tag.py b/document_page_tag/tests/test_document_page_tag.py index 6c95ecff..66a83bfd 100644 --- a/document_page_tag/tests/test_document_page_tag.py +++ b/document_page_tag/tests/test_document_page_tag.py @@ -11,7 +11,8 @@ class TestDocumentPageTag(TransactionCase): testtag = self.env["document.page.tag"].name_create("test") # check we're charitable on duplicates self.assertEqual( - testtag, self.env["document.page.tag"].name_create("Test"), + testtag, + self.env["document.page.tag"].name_create("Test"), ) # check we can't create nonunique tags with self.assertRaises(IntegrityError): diff --git a/setup/document_page_tag/odoo/addons/document_page_tag b/setup/document_page_tag/odoo/addons/document_page_tag new file mode 120000 index 00000000..2f64ea43 --- /dev/null +++ b/setup/document_page_tag/odoo/addons/document_page_tag @@ -0,0 +1 @@ +../../../../document_page_tag \ No newline at end of file diff --git a/setup/document_page_tag/setup.py b/setup/document_page_tag/setup.py new file mode 100644 index 00000000..28c57bb6 --- /dev/null +++ b/setup/document_page_tag/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)