Skip to content

Commit 31f0ced

Browse files
committed
Disable reproduce content printing
Now it is an irrelevant feature for us because we restart Tarantool server before each test [1]. So the order of tests shouldn't affect anything. This patch just disables reproduce content printing. It is planned to drop the related code later. [1] #309
1 parent b31329e commit 31f0ced

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

listeners.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,7 @@ def process_result(self, obj):
5757
self.stats[obj.short_status] += 1
5858

5959
if obj.short_status == 'fail':
60-
self.failed_tasks.append((obj.task_id,
61-
obj.worker_name,
62-
obj.show_reproduce_content))
60+
self.failed_tasks.append((obj.task_id, obj.worker_name, False))
6361

6462
self.duration_stats[obj.task_id] = obj.duration
6563
self.print_status_line()

0 commit comments

Comments
 (0)