We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 561332a commit 261636eCopy full SHA for 261636e
test/canary/scripts/push_stats_to_cloudwatch.py
@@ -13,7 +13,7 @@ def readXML_and_publish_metrics_to_cw():
13
failures = testsuite.attrib["failures"]
14
tests = testsuite.attrib["tests"]
15
successes = int(tests) - int(failures)
16
- success_rate = successes/int(tests)*100
+ success_rate = (successes/int(tests))*100
17
else:
18
print("f{xml_path} does not exists.")
19
print(os.getcwd())
0 commit comments