File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ def run_all_test_steps_in_a_test_case(
600
600
sTestStepStartTime = datetime .fromtimestamp (TestStepStartTime , tz = pytz .UTC ).strftime ("%Y-%m-%d %H:%M:%S.%f" )
601
601
WinMemBegin = CommonUtil .PhysicalAvailableMemory () # get available memory
602
602
603
- if StepSeq in CommonUtil .disabled_step :
603
+ if StepSeq in CommonUtil .disabled_step or not all_step_info [ StepSeq - 1 ][ 'step_enable' ] :
604
604
CommonUtil .ExecLog (sModuleInfo , "STEP-%s is disabled" % StepSeq , 2 )
605
605
sStepResult = "skipped"
606
606
else :
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ def read_steps(steps_pb) -> List[Dict]:
50
50
"automatablity" : step ["stepInfo" ]["stepType" ],
51
51
"always_run" : step ["stepInfo" ]["alwaysRun" ],
52
52
"run_on_fail" : step ["stepInfo" ]["runOnFail" ],
53
+ "step_enable" : step ["stepInfo" ]["stepEnable" ],
53
54
"step_function" : "Sequential Actions" ,
54
55
"step_driver" : step ["stepInfo" ]["driver" ],
55
56
"type" : step ["type" ],
You can’t perform that action at this time.
0 commit comments