diff --git a/README.md b/README.md
index 7876982d805..7ece2c97859 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ addon | version | maintainers | summary
[attachment_queue](attachment_queue/) | 18.0.1.0.1 |
| Base module adding the concept of queue for processing files
[attachment_synchronize](attachment_synchronize/) | 18.0.1.0.0 |
| Attachment Synchronize
[attachment_unindex_content](attachment_unindex_content/) | 18.0.1.0.0 |
| Disable indexing of attachments
-[auditlog](auditlog/) | 18.0.2.0.8 | | Audit Log
+[auditlog](auditlog/) | 18.0.2.0.9 | | Audit Log
[auto_backup](auto_backup/) | 18.0.1.0.1 | | Backups database
[autovacuum_message_attachment](autovacuum_message_attachment/) | 18.0.1.0.1 |
| Automatically delete old mail messages and attachments
[base_cron_exclusion](base_cron_exclusion/) | 18.0.1.0.1 |
| Allow you to select scheduled actions that should not run simultaneously.
diff --git a/auditlog/README.rst b/auditlog/README.rst
index 755e8eb6ede..4807802a06c 100644
--- a/auditlog/README.rst
+++ b/auditlog/README.rst
@@ -11,7 +11,7 @@ Audit Log
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:6128c82bad9689e7c528d9ae09d134e19b9621da07836b677ab696eedc688ebc
+ !! source digest: sha256:a0543c8ac1272df7c45f3f3ab1e658d0031331b342ea25d7eb5fccc3c23e05df
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/auditlog/__manifest__.py b/auditlog/__manifest__.py
index 2b21e9766be..2b391013c56 100644
--- a/auditlog/__manifest__.py
+++ b/auditlog/__manifest__.py
@@ -3,7 +3,7 @@
{
"name": "Audit Log",
- "version": "18.0.2.0.8",
+ "version": "18.0.2.0.9",
"author": "ABF OSIELL, Odoo Community Association (OCA)",
"license": "AGPL-3",
"website": "https://github.com/OCA/server-tools",
diff --git a/auditlog/static/description/index.html b/auditlog/static/description/index.html
index a84297f7df4..015bbbc414f 100644
--- a/auditlog/static/description/index.html
+++ b/auditlog/static/description/index.html
@@ -372,7 +372,7 @@
Audit Log
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-!! source digest: sha256:6128c82bad9689e7c528d9ae09d134e19b9621da07836b677ab696eedc688ebc
+!! source digest: sha256:a0543c8ac1272df7c45f3f3ab1e658d0031331b342ea25d7eb5fccc3c23e05df
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

This module allows the administrator to log user operations performed on
diff --git a/auditlog/tests/test_auditlog.py b/auditlog/tests/test_auditlog.py
index 67fea7b07e8..ecee5108f81 100644
--- a/auditlog/tests/test_auditlog.py
+++ b/auditlog/tests/test_auditlog.py
@@ -2,7 +2,7 @@
# © 2018 Pieter Paulussen
# © 2021 Stefan Rijnhart
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
-
+from odoo.tests import tagged
from odoo.tools import mute_logger
from odoo.addons.base.models.ir_model import MODULE_UNINSTALL_FLAG
@@ -280,6 +280,7 @@ def test_LogDelete(self):
)
+@tagged("-at_install", "post_install")
class TestAuditlogFull(AuditLogRuleCommon, AuditlogCommon):
@classmethod
def setUpClass(cls):
@@ -298,6 +299,7 @@ def setUpClass(cls):
)
+@tagged("-at_install", "post_install")
class TestAuditlogExportData(AuditLogRuleCommon):
@classmethod
def setUpClass(cls):
@@ -329,6 +331,7 @@ def test_LogExport(self):
self.assertIsInstance(domain[0][2], list)
+@tagged("-at_install", "post_install")
class TestAuditlogFast(AuditLogRuleCommon, AuditlogCommon):
@classmethod
def setUpClass(cls):
@@ -347,6 +350,7 @@ def setUpClass(cls):
)
+@tagged("-at_install", "post_install")
class TestFieldRemoval(AuditLogRuleCommon):
@classmethod
def setUpClass(cls):
@@ -444,6 +448,7 @@ def test_01_field_and_model_removal(self):
self.assertFalse(self.auditlog_rule.model_id)
+@tagged("-at_install", "post_install")
class TestAuditlogFullCaptureRecord(AuditLogRuleCommon, AuditlogCommon):
@classmethod
def setUpClass(cls):
@@ -463,6 +468,7 @@ def setUpClass(cls):
)
+@tagged("-at_install", "post_install")
class AuditLogRuleTestForUserFields(AuditLogRuleCommon):
@classmethod
def setUpClass(cls):
@@ -647,6 +653,7 @@ def test_06_AuditlogFull_unlink_log(self):
self.assertTrue(delete_log_record)
+@tagged("-at_install", "post_install")
class AuditLogRuleTestForUserModel(AuditLogRuleCommon):
@classmethod
def setUpClass(cls):
@@ -723,6 +730,7 @@ def test_02_AuditlogFull_field_group_write_log(self):
self.assertTrue(write_log_record)
+@tagged("-at_install", "post_install")
class AuditlogFast_excluded_fields(AuditLogRuleCommon):
@classmethod
def setUpClass(cls):
diff --git a/auditlog/tests/test_autovacuum.py b/auditlog/tests/test_autovacuum.py
index e4831225f7d..b8a13371309 100644
--- a/auditlog/tests/test_autovacuum.py
+++ b/auditlog/tests/test_autovacuum.py
@@ -2,9 +2,12 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
import time
+from odoo.tests import tagged
+
from .common import AuditLogRuleCommon
+@tagged("-at_install", "post_install")
class TestAuditlogAutovacuum(AuditLogRuleCommon):
def setUp(self):
super().setUp()