Skip to content

Commit eba777e

Browse files
skip: debug os system action
1 parent 0e25a68 commit eba777e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/executor.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,8 @@ def _run_command(self, command, defaults_url=None, apps_url=None):
285285
env["SPLUNK_DEFAULTS_URL"] = defaults_url
286286
if apps_url:
287287
env["SPLUNK_APPS_URL"] = apps_url
288-
self.logger.info(f"os.system attempt - {command}")
289-
os.system(command)
288+
self.logger.info(f"os.system attempt - {command}; SKIPPED")
289+
#os.system(command)
290290
self.logger.info("execute command vis subprocess;")
291291
proc = subprocess.Popen(sh, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env, text=True)
292292
self.logger.info("PROC created")

0 commit comments

Comments
 (0)