ADD: possibility to whitelist some modules
This commit is contained in:
@ -20,9 +20,13 @@ def deps_status_check(module_cmd_process):
|
||||
|
||||
def failure_handler(module, given_status):
|
||||
if len(module) != 0:
|
||||
print('Module: "' + module + '" should be deployed as ' + given_status)
|
||||
global failed_at_least_once
|
||||
failed_at_least_once = True
|
||||
with open("whitelist.txt") as file:
|
||||
content = file.read()
|
||||
name = module.split()[0].split("/")[0]
|
||||
if name not in content:
|
||||
print('Module: "' + module + '" should be deployed as ' + given_status)
|
||||
global failed_at_least_once
|
||||
failed_at_least_once = True
|
||||
|
||||
|
||||
def subprocess_cmd(cmd):
|
||||
|
Reference in New Issue
Block a user