File tree Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Expand file tree Collapse file tree 1 file changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -729,19 +729,18 @@ def main() -> None:
729729 flow .deploy_objects ()
730730 sys .exit (0 )
731731
732- # Deploy the builds and runs
733- if args .items :
734- # Create deploy objects.
735- flow .create_deploy_objects ()
736- results = flow .deploy_objects ()
737-
738- # Generate results.
739- flow .gen_results (results )
740-
741- else :
732+ if not args .items :
742733 log .error ("Nothing to run!" )
743734 sys .exit (1 )
744735
736+ # Deploy the builds and runs
737+ # Create deploy objects.
738+ flow .create_deploy_objects ()
739+ results = flow .deploy_objects ()
740+
741+ # Generate results.
742+ flow .gen_results (results )
743+
745744 # Exit with non-zero status if there were errors or failures.
746745 if flow .has_errors ():
747746 log .error ("Errors were encountered in this run." )
You can’t perform that action at this time.
0 commit comments