@@ -40,7 +40,8 @@ def init_service(self, endpoint, project, uuid, log_batch_size,
4040 self .ignore_errors = ignore_errors
4141 self .ignored_tags = ignored_tags
4242 logging .debug (
43- msg = 'ReportPortal - Init service: endpoint={0}, project={1}, uuid={2}' .
43+ msg = 'ReportPortal - Init service: '
44+ 'endpoint={0}, project={1}, uuid={2}' .
4445 format (endpoint , project , uuid ))
4546 self .RP = ReportPortalServiceAsync (
4647 endpoint = endpoint ,
@@ -85,9 +86,11 @@ def start_launch(
8586 'mode' : mode ,
8687 'tags' : tags
8788 }
88- logging .debug ('ReportPortal - Start launch: request_body=%s' , sl_pt )
89+ logging .debug ('ReportPortal - Start launch: '
90+ 'request_body=%s' , sl_pt )
8991 req_data = self .RP .start_launch (** sl_pt )
90- logging .debug ('ReportPortal - Launch started: response_body=%s' , req_data )
92+ logging .debug ('ReportPortal - Launch started: '
93+ 'response_body=%s' , req_data )
9194
9295 def start_pytest_item (self , test_item = None ):
9396 self ._stop_if_necessary ()
@@ -102,7 +105,8 @@ def start_pytest_item(self, test_item=None):
102105 'item_type' : 'STEP'
103106 }
104107
105- logging .debug ('ReportPortal - Start TestItem: request_body=%s' , start_rq )
108+ logging .debug ('ReportPortal - Start TestItem: '
109+ 'request_body=%s' , start_rq )
106110 self .RP .start_test_item (** start_rq )
107111
108112 def _get_tags (self , test_item ):
@@ -127,7 +131,8 @@ def finish_pytest_item(self, status, issue=None):
127131 'issue' : issue
128132 }
129133
130- logging .debug ('ReportPortal - Finish TestItem: request_body=%s' , fta_rq )
134+ logging .debug ('ReportPortal - Finish TestItem: '
135+ 'request_body=%s' , fta_rq )
131136 self .RP .finish_test_item (** fta_rq )
132137
133138 def finish_launch (self , launch = None , status = 'rp_launch' ):
0 commit comments