We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d443d07 commit 3fd43dbCopy full SHA for 3fd43db
unittests/test_factory.py
@@ -66,7 +66,12 @@ def test_parser_name_matches_module(self):
66
package_dir = "dojo/tools"
67
module_names = os.listdir(package_dir)
68
missing_parsers = []
69
+ excluded_parsers = [
70
+ "wizcli_common_parsers", # common class for other wizcli parsers, there is not parsing here
71
+ ]
72
for module_name in module_names:
73
+ if module_name in excluded_parsers:
74
+ continue
75
if os.path.isdir(os.path.join(package_dir, module_name)):
76
found = False
77
if find_spec(f"dojo.tools.{module_name}.parser"):
0 commit comments