Skip to content

Commit b7b4ed1

Browse files
committed
added number of procs to the (mpi) display on output
1 parent 4cbbec9 commit b7b4ed1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testflo/printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def _print_result(self, result):
4343

4444
if (self.verbose == 0 and (result.err_msg and show_msg)) or self.verbose > 0:
4545
if result.mpi and result.nprocs > 0:
46-
run_type = '(mpi) '
46+
run_type = f'(mpi {result.nprocs}) '
4747
elif result.isolated:
4848
run_type = '(isolated) '
4949
else:

0 commit comments

Comments
 (0)