diff --git a/etg/_core.py b/etg/_core.py index affefad7..f1c4d173 100644 --- a/etg/_core.py +++ b/etg/_core.py @@ -123,6 +123,7 @@ def run(): # Parse the XML file(s) building a collection of Extractor objects module = etgtools.ModuleDef(PACKAGE, MODULE, NAME, DOCSTRING) etgtools.parseDoxyXML(module, ITEMS) + module.check4unittest = False #----------------------------------------------------------------- # Tweak the parsed meta objects in the module object as needed for diff --git a/etg/defs.py b/etg/defs.py index e2fac384..955613bf 100644 --- a/etg/defs.py +++ b/etg/defs.py @@ -25,6 +25,7 @@ def run(): # Parse the XML file(s) building a collection of Extractor objects module = etgtools.ModuleDef(PACKAGE, MODULE, NAME, DOCSTRING) etgtools.parseDoxyXML(module, ITEMS) + module.check4unittest = False #----------------------------------------------------------------- # Tweak the parsed meta objects in the module object as needed for diff --git a/etg/toplevel.py b/etg/toplevel.py index 1b448e0f..e1467a47 100644 --- a/etg/toplevel.py +++ b/etg/toplevel.py @@ -25,6 +25,7 @@ def run(): # Parse the XML file(s) building a collection of Extractor objects module = etgtools.ModuleDef(PACKAGE, MODULE, NAME, DOCSTRING) etgtools.parseDoxyXML(module, ITEMS) + module.check4unittest = False #----------------------------------------------------------------- # Tweak the parsed meta objects in the module object as needed for