diff --git a/tubular/scripts/dd_synthetic_tests.py b/tubular/scripts/dd_synthetic_tests.py index d528e355..4a80384d 100644 --- a/tubular/scripts/dd_synthetic_tests.py +++ b/tubular/scripts/dd_synthetic_tests.py @@ -147,11 +147,12 @@ def _poll_for_test_result(self, test): Poll for test run completion within the maximum allowable time for the specified test. Returns None if still running; otherwise, returns True on test success and False on test failure. """ - logging.info(f"Polling on test {test.public_id}: {test.name}") + logging.info(f"Polling on test {test.public_id}: {test.name}, test_run_id = {test.test_run_id}") test_result = None while test_result is None and (time.time() - self.trigger_time) < (self.MAX_ALLOWABLE_TIME_SECS): time.sleep(5) # Poll every 5 seconds test_result = self._get_test_result(test) + logging.info(f'{test_result=}') if test_result is None: raise Exception("The test run timed out.")