Skip to content

Commit

Permalink
Disable reproduce content printing
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ylobankov committed Aug 1, 2023
1 parent 642536c commit 1a8d4ca
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions listeners.py
Expand Up @@ -57,9 +57,7 @@ def process_result(self, obj):
self.stats[obj.short_status] += 1

if obj.short_status == 'fail':
self.failed_tasks.append((obj.task_id,
obj.worker_name,
obj.show_reproduce_content))
self.failed_tasks.append((obj.task_id, obj.worker_name, False))

self.duration_stats[obj.task_id] = obj.duration
self.print_status_line()
Expand Down

0 comments on commit 1a8d4ca

Please sign in to comment.