From 7c1bd08c9bce6dc55aa0d4137f4c6562234a84e7 Mon Sep 17 00:00:00 2001 From: anandhu-eng Date: Fri, 25 Apr 2025 10:37:58 +0530 Subject: [PATCH] added experiment to script automation --- automation/script/module.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/automation/script/module.py b/automation/script/module.py index 28fe3e978..7cbec2196 100644 --- a/automation/script/module.py +++ b/automation/script/module.py @@ -4469,6 +4469,13 @@ def docker(self, i): from script.docker import docker_run return docker_run(self, i) + ############################################################ + # portion for experiment action. + # as of now, the experiment action directly calls the run action. + # in the future, we will add more functionality to the experiment action. + def experiment(self, i): + return self.run(i) + ########################################################################## def _available_variations(self, i):