Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TA#72111 [16.0][REM] Remove hr_event #81

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .docker_files/main/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"license": "LGPL-3",
"category": "Other",
"summary": "Install all addons required for testing.",
"depends": ["hr_working_space"],
"depends": [
# "hr_event", # TA#72111 : Disable module installation according the task
"hr_working_space",
],
"installable": True,
}
7 changes: 4 additions & 3 deletions .docker_files/main/tests/test_installed_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ def setUp(self):
super(TestModules, self).setUp()
self.modules = self.env["ir.module.module"]

def test_hr_event(self):
"""HR Event is installed."""
self.assertTrue(self.modules.search([("name", "=", "hr_event")]))
# TA#72111 : Comment the test according the task
# def test_hr_event(self):
# """HR Event is installed."""
# self.assertTrue(self.modules.search([("name", "=", "hr_event")]))

def test_hr_working_space(self):
"""Working Space is installed."""
Expand Down
Loading