odoo/addons/base_module_quality
GPA(OpenERP) 7b51ce675b [IMP] Modules : Module name improvements in __terp__.py
bzr revid: jvo@tinyerp.com-20091125064304-k2w1j0imujf5tgab
2009-11-25 12:13:04 +05:30
..
document [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30
i18n Launchpad automatic translations update. 2009-11-24 04:39:26 +00:00
method_test Changed licencing terms 2009-10-14 16:45:34 +05:30
object_test Changed licencing terms 2009-10-14 16:45:34 +05:30
pep8_test Changed licencing terms 2009-10-14 16:45:34 +05:30
pylint_test Changed licencing terms 2009-10-14 16:45:34 +05:30
security [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30
speed_test Changed licencing terms 2009-10-14 16:45:34 +05:30
structure_test Changed licencing terms 2009-10-14 16:45:34 +05:30
terp_test Changed licencing terms 2009-10-14 16:45:34 +05:30
unit_test [FIX] base_module_quality: unit test if test has problem it will make exception in detail now 2009-10-28 12:19:45 +05:30
wizard Changed licencing terms 2009-10-14 16:45:34 +05:30
workflow_test Changed licencing terms 2009-10-14 16:45:34 +05:30
README.txt [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30
__init__.py Remove sql injection problem 2009-10-21 12:54:49 +05:30
__terp__.py [IMP] Modules : Module name improvements in __terp__.py 2009-11-25 12:13:04 +05:30
base_module_quality.py Remove sql injection problem 2009-10-21 12:54:49 +05:30
base_module_quality_view.xml [IMP] base_module_quality: make minimal score for all test, add message if the score is below limit,varible for whether to activate the test or not 2009-08-28 12:54:57 +05:30
base_module_quality_wizard.xml [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30

README.txt

This module provide a generic framework to define your own quality test. 


All you have to do is to:
* create a folder with your test in 'base_module_quality' (e.g: mkdir base_module_quality\mytest)
* create a .py file in it with same name as the folder you just created (e.g: touch base_module_quality\mytest\mytest.py)
* edit your file and define a class 'quality_check' that 
    * inherits the class 'abstract_quality_test' (defined in base_module_quality.py) 
    * implements the __init__() method accordingly to what you want to test.