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 68b11ed commit ed45e1dCopy full SHA for ed45e1d
listeners.py
@@ -52,10 +52,13 @@ def print_statistics(self):
52
color_stdout('Failed tasks:\n', schema='test_var')
53
for task_id, worker_name in self.failed_tasks:
54
logfile = self.get_logfile(worker_name)
55
- reproduce_file = get_reproduce_file(worker_name)
+ reproduce_file_path = get_reproduce_file(worker_name)
56
color_stdout('- %s' % yaml.safe_dump(task_id), schema='test_var')
57
color_stdout('# logfile: %s\n' % logfile)
58
- color_stdout('# reproduce file: %s\n' % reproduce_file)
+ color_stdout('# reproduce file: %s\n' % reproduce_file_path)
59
+ color_stdout("---\n", schema='separator')
60
+ lib.utils.print_tail_n(reproduce_file_path)
61
+ color_stdout("...\n", schema='separator')
62
63
return True
64
0 commit comments