-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* usage of odoo-public * move docker_files -> .docker_files * revision of files that where ported to odoo-public * introduce numitech
- Loading branch information
1 parent
27f20ea
commit c7489f2
Showing
5 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
NumiTech | ||
======== | ||
Module that install technological modules that we want for quality. | ||
|
||
Contributors | ||
------------ | ||
* Jordi Riera | ||
* David Dufresne |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2018 Jordi Riera | ||
# © 2018 David Dufresne | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
# © 2018 Jordi Riera | ||
# © 2018 David Dufresne | ||
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). | ||
|
||
{ | ||
'name': 'numitech', | ||
'version': '1.0', | ||
'author': 'Numigi', | ||
'maintainer': 'Numigi', | ||
'license': 'LGPL-3', | ||
'category': 'Extra Tools', | ||
'summary': 'Quality tools we want in every instances.', | ||
'depends': [ | ||
'auto_backup', | ||
'sentry', | ||
], | ||
'data': [], | ||
'installable': True, | ||
'application': False, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import test_installed_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
from odoo.tests import TransactionCase | ||
|
||
|
||
class TestModules(TransactionCase): | ||
""" | ||
Numitech mainly installs modules for our quality. | ||
This test suite enforces that the wanted modules are installed. | ||
""" | ||
|
||
def setUp(self): | ||
super(TestModules, self).setUp() | ||
self.modules = self.env['ir.module.module'] | ||
|
||
def test_sentry(self): | ||
""" Sentry is installed.""" | ||
self.assertTrue(self.modules.search([('name', '=', 'sentry')])) | ||
|
||
def test_auto_back(self): | ||
""" Auto Backup is installed.""" | ||
self.assertTrue(self.modules.search([('name', '=', 'auto_backup')])) |