Browse Source

Merge pull request #5035 from Miciah/openshift_checks-ignore-hidden-files-in-checks-directory

openshift_checks: ignore hidden files in checks dir
Rodolfo Carvalho 7 years ago
parent
commit
7faa0c4111
1 changed files with 1 additions and 1 deletions
  1. 1 1
      roles/openshift_health_checker/openshift_checks/__init__.py

+ 1 - 1
roles/openshift_health_checker/openshift_checks/__init__.py

@@ -242,7 +242,7 @@ def load_checks(path=None, subpkg=""):
             modules = modules + load_checks(os.path.join(path, name), subpkg + "." + name)
             continue
 
-        if name.endswith(".py") and name not in LOADER_EXCLUDES:
+        if name.endswith(".py") and not name.startswith(".") and name not in LOADER_EXCLUDES:
             modules.append(import_module(__package__ + subpkg + "." + name[:-3]))
 
     return modules