Lines Matching refs:step
243 step_name: str # a copy of the step name
280 for step in self.steps:
281 result.append(f"\t{step.report()}")
289 output(f"--- Start step {name} ---")
553 step = StepResult(self.name, command=command)
554 Utils.exec_command(command, test_report.test_id, step, self.args.timeout,
556 test_report.steps.append(step)
557 test_report.passed = step.is_passed
722 step = StepResult(self.name, command=command)
723 Utils.exec_command(command, test_report.test_id, step, self.args.timeout,
725 test_report.steps.append(step)
726 test_report.passed = step.is_passed
854 step = StepResult(self.name, command=command)
856 self.run_test_case_with_expect(command, step, test_report, expect_file)
858 self.run_test_case_with_assert(command, step, test_report)
859 test_report.steps.append(step)
860 test_report.passed = step.is_passed
863 def run_test_case_with_expect(self, command, step: StepResult, test_report: TestReport, expect_file) -> None:
864 Utils.exec_command(command, test_report.test_id, step, self.args.timeout,
867 def run_test_case_with_assert(self, command, step: StepResult, test_report: TestReport) -> None:
868 Utils.exec_command(command, test_report.test_id, step, self.args.timeout,
931 for step in steps:
932 output(f"Step {step.step_obj.name} - duration {step.step_obj.get_duration()}")
933 summary_duration += step.step_obj.get_duration()
1054 for step in steps:
1055 test_reports = step.run(args, test_reports)