(points, key, average, stddev, min_value, max_value,
unit_string, widths)
| 85 | |
| 86 | |
| 87 | def format_line(points, key, average, stddev, min_value, max_value, |
| 88 | unit_string, widths): |
| 89 | return "{:>{}}; {:<{}}; {:>{}}; {:>{}}; {:>{}}; {:>{}}; {}".format( |
| 90 | points, widths.points, |
| 91 | key, widths.key, |
| 92 | average, widths.average, |
| 93 | stddev, widths.stddev, |
| 94 | min_value, widths.min, |
| 95 | max_value, widths.max, |
| 96 | unit_string) |
| 97 | |
| 98 | |
| 99 | def fmt_reps(msrmnt): |
no test coverage detected