Skip to content

Commit 77ece18

Browse files
author
Rustam Sadykov
committed
update stats transforming
1 parent 87b51c4 commit 77ece18

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

monitoring/draw_stats_graphs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def load(json_file):
2323
def transform_stats(stats):
2424
num = stats["covered_instructions_count"]
2525
denum = stats["total_instructions_count"]
26-
stats["total_coverage"] = num / denum if denum != 0 else 0
26+
stats["total_coverage"] = 100 * num / denum if denum != 0 else 0
2727
del stats["covered_instructions_count"]
2828
del stats["total_instructions_count"]
2929

0 commit comments

Comments
 (0)