jenkinsfile

This commit is contained in:
unknown 2020-04-03 15:00:51 +02:00
parent 1a4236b9aa
commit 26110555b6

View File

@ -19,6 +19,6 @@ with open("helper.txt", "r") as f:
counter += 1
wer.write(lastId + " = " + str(sum) + "%\n")
wer.write("AVG: " + str(int((globalPercent) / (int(counter) * 100)*100)) + "%")
wer.write("AVG: " + str(float((globalPercent) / (float(counter) * 100)*100)) + "%")
wer.close()