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 a7f392b commit 792409dCopy full SHA for 792409d
test/canary/scripts/push_stats_to_cloudwatch.py
@@ -4,7 +4,7 @@
4
import os
5
6
7
-xml_path = "../canary/integration_tests.xml"
+xml_path = "../integration_tests.xml"
8
9
def readXML_and_publish_metrics_to_cw():
10
if os.path.isfile(xml_path):
@@ -14,6 +14,8 @@ def readXML_and_publish_metrics_to_cw():
14
tests = testsuite.attrib["tests"]
15
successes = int(tests) - int(failures)
16
else:
17
+ print("f{xml_path} does not exists.")
18
+ print(os.getcwd())
19
failures = 0
20
successes = 0
21
tests = 1
0 commit comments