From 2444639d6153baf5ece78eb4a322ace6a4aaa2df Mon Sep 17 00:00:00 2001 From: Dibya Prakash Das Date: Sat, 4 Aug 2018 01:46:01 +0530 Subject: [PATCH] change `test-run` to be of int type Change-Id: I52e69e9b637e2dd464a44f99076a544d75ed556e Signed-off-by: Dibya Prakash Das --- csit/scripts/push_to_elk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csit/scripts/push_to_elk.py b/csit/scripts/push_to_elk.py index ce6f6a1a6b..3a9ade920d 100755 --- a/csit/scripts/push_to_elk.py +++ b/csit/scripts/push_to_elk.py @@ -129,7 +129,7 @@ else: BODY['jenkins-silo'] = os.environ['SILO'] BODY['test-name'] = os.environ['JOB_NAME'] -BODY['test-run'] = os.environ['BUILD_NUMBER'] +BODY['test-run'] = int(os.environ['BUILD_NUMBER']) # Parsing robot log for stats on start-time, pass/fail tests and duration. -- 2.36.6