Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
return request_throughput with as float
Browse files Browse the repository at this point in the history
  • Loading branch information
kaylarizi committed Feb 14, 2024
1 parent 3c210ba commit 7ccc152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/utils/test_suite_serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __get_test_runs_metrics(test_runs):
"average_cpu_cores": round(cpu_cores_avg, 2),
"average_cpu": round(cpu_avg, 2),
"average_memory": int(memory_avg),
"request_throughput": int(request_throughput),
"request_throughput": round(request_throughput, 2),
"bytes_throughput": int(bytes_throughput)
}
}
Expand Down

0 comments on commit 7ccc152

Please sign in to comment.