LAVA scripts: Don't assume job id is int
This no longer will be true with TuxSuite integration, so just treat id as
a string.
Signed-off-by: Paul Sokolovsky <paul.sokolovsky@linaro.org>
Change-Id: I37e3d0bfede394804dcc26fc71734cdf6ad16f58
diff --git a/lava_helper/codecov_helper.py b/lava_helper/codecov_helper.py
index abae19e..f108437 100644
--- a/lava_helper/codecov_helper.py
+++ b/lava_helper/codecov_helper.py
@@ -55,7 +55,7 @@
os.path.join(job_dir, os.path.basename(fname))
)
- _log.info("Producing coverage report for job %d", job_id)
+ _log.info("Producing coverage report for job %s", job_id)
dl_artifact("spe/bin/bl2.axf")
dl_artifact("spe/bin/tfm_s.axf")
dl_artifact("nspe/bin/tfm_ns.axf")