(ci/cd) show load test output on release

This commit is contained in:
ishaan-jaff 2024-03-15 11:11:52 -07:00
parent 48e4459602
commit b637511dcb
2 changed files with 9 additions and 0 deletions

View file

@ -42,6 +42,11 @@ def interpret_results(csv_file):
print(result_str)
interpreted_results_str += result_str
print(interpreted_results_str)
# write interpreted results to .txt file
with open("load_test_interpreted_results.txt", "w") as f:
f.write(interpreted_results_str)
return interpreted_results_str