From bccaab7e6cbbcf3219120df04b8b7276b70f8733 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Thu, 20 May 2021 14:13:49 +0800 Subject: [PATCH] fix(ci): fix missing [Performance] prefix in junit report --- tools/ci/python_packages/tiny_test_fw/TinyFW.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/python_packages/tiny_test_fw/TinyFW.py b/tools/ci/python_packages/tiny_test_fw/TinyFW.py index 6825dd8f69..0c5ba32605 100644 --- a/tools/ci/python_packages/tiny_test_fw/TinyFW.py +++ b/tools/ci/python_packages/tiny_test_fw/TinyFW.py @@ -149,7 +149,7 @@ class JunitReport(object): assert cls.JUNIT_CURRENT_TEST_CASE for item in performance_items: - cls.JUNIT_CURRENT_TEST_CASE.stdout += '[{}]: {}\n'.format(item[0], item[1]) + cls.JUNIT_CURRENT_TEST_CASE.stdout += '[Performance][{}]: {}\n'.format(item[0], item[1]) def test_method(**kwargs):