gaurav-narula commented on PR #22987:
URL: https://github.com/apache/kafka/pull/22987#issuecomment-5301987467

   > <_io.TextIOWrapper name='<stderr>' mode='w' encoding='utf-8'> 
   
   Sigh, I had come across that as well and unfortunately it comes from a 
dependency `HTMLTestRunner-Python3` in file 
`.venv/lib/python3.13/site-packages/HTMLTestRunner/HTMLTestRunner.py` line 632
   
   ```
       def run(self, test):
           "Run the given test case or test suite."
           result = _TestResult(self.verbosity)
           test(result)
           self.stopTime = datetime.datetime.now()
           self.generateReport(test, result)
           print(sys.stderr, '\nTime Elapsed: %s' % 
(self.stopTime-self.startTime)) # BUG: This should have been `print('\nTime 
Elapsed: %s' % 100, file=sys.stderr)` 
           return result
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to