We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10325a2 commit c8d0627Copy full SHA for c8d0627
ci/jobs/scripts/integration_tests_runner.py
@@ -505,8 +505,11 @@ def _handle_broken_tests(
505
def get_log_paths(test_name):
506
"""Could be a list of logs for all tests or a dict with test name as a key"""
507
if isinstance(log_paths, dict):
508
- return sorted(log_paths[test_name], reverse=True)
509
- return sorted(log_paths, reverse=True)
+ log_paths = log_paths[test_name]
+ log_paths = sorted(
510
+ [x for x in log_paths if x.endswith(".log")], reverse=True
511
+ )
512
+ return log_paths
513
514
broken_tests_log = os.path.join(self.result_path, "broken_tests_handler.log")
515
0 commit comments