A completely empty config is a valid config

This commit is contained in:
Pim van Pelt
2022-03-15 20:52:09 +00:00
parent c5872880fe
commit 6d3de72c00
3 changed files with 10 additions and 1 deletions

View File

@ -73,7 +73,7 @@ def main():
for fn in glob.glob(pattern):
tests = tests + 1
unittest, cfg = load_unittest(fn)
if not unittest or not cfg:
if not unittest:
errors = errors + 1
continue