Skip to content

Commit 8d0bd18

Browse files
author
Nathan Lee
committed
Fixed final status logic
1 parent e1cae56 commit 8d0bd18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyrunner/core/engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def initiate(self, **kwargs):
166166
if self._on_destroy_func:
167167
self._on_destroy_func()
168168

169-
if not kwargs.get('silent') and not self.config['silent']:
169+
if self.config['dump_logs'] or (not kwargs.get('silent') and not self.config['silent']):
170170
self._print_final_state()
171171

172172
if not self.config['test_mode'] and self.save_state_func:

0 commit comments

Comments
 (0)