Skip to content

Commit 3fd43db

Browse files
committed
Update parser module test
1 parent d443d07 commit 3fd43db

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

unittests/test_factory.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,12 @@ def test_parser_name_matches_module(self):
6666
package_dir = "dojo/tools"
6767
module_names = os.listdir(package_dir)
6868
missing_parsers = []
69+
excluded_parsers = [
70+
"wizcli_common_parsers", # common class for other wizcli parsers, there is not parsing here
71+
]
6972
for module_name in module_names:
73+
if module_name in excluded_parsers:
74+
continue
7075
if os.path.isdir(os.path.join(package_dir, module_name)):
7176
found = False
7277
if find_spec(f"dojo.tools.{module_name}.parser"):

0 commit comments

Comments
 (0)