Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
seankingyang committed Aug 10, 2023
1 parent 128460d commit 2e5b478
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def set_session_desc(self, session_desc="CE-QA-PC_Test"):


class TestCommandGenerator(CheckboxLauncherBuilder):
def __init__(self, template_bin_folder="./template/bin/",
def __init__(self, template_bin_folder="./template/shell_scripts/",
launcher_temp_folder="./template/launcher_config"):
super().__init__(template_folder=launcher_temp_folder)
# self.shell_file_list = glob.glob(f"{template_bin_folder}/*")
Expand Down Expand Up @@ -245,7 +245,7 @@ def generate_test_cmd(self, manifest_json_path, test_plan_name,
class TFYamlBuilder(YamlGenerator, TestCommandGenerator):
def __init__(self, cid, default_yaml_file_path="./template/template.yaml",
globaltimeout=43200, outputtimeout=3600,
template_bin_folder="./template/bin/",
template_bin_folder="./template/shell_scripts/",
launcher_temp_folder="./template/launcher_config/",
is_runtest=True):
YamlGenerator.__init__(self,
Expand Down Expand Up @@ -349,7 +349,7 @@ def parse_input_arg():

opt_shell = parser.add_argument_group("Test command in testflinger yaml")
opt_shell.add_argument("--binFolder", type=str,
default="./template/bin/",
default="./template/shell_scripts/",
help="Set the testflinger test command folder")

args = parser.parse_args()
Expand Down

0 comments on commit 2e5b478

Please sign in to comment.