aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprettyboy <prettyboy@yandex-team.com>2022-12-10 10:40:14 +0300
committerprettyboy <prettyboy@yandex-team.com>2022-12-10 10:40:14 +0300
commit67bbe255510b60f6ea0aca30d61bec59bf05ff0d (patch)
tree7619b4fc37d099a86df77c9957c80798fb159aba
parenta8aefff09fd4d9e76262100a23301e19259f8a3c (diff)
downloadydb-67bbe255510b60f6ea0aca30d61bec59bf05ff0d.tar.gz
[library/python/pytest/plugins] Report pytest_startup_duration as chunk event, not suite
-rw-r--r--library/python/pytest/plugins/ya.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/python/pytest/plugins/ya.py b/library/python/pytest/plugins/ya.py
index 5d8bfb25b9..af4a6ff4d0 100644
--- a/library/python/pytest/plugins/ya.py
+++ b/library/python/pytest/plugins/ya.py
@@ -862,7 +862,7 @@ class TraceReportGenerator(object):
def dump_suite_metrics(self):
message = {"metrics": pytest_config.suite_metrics}
- self.trace("suite-event", message)
+ self.trace("chunk_event", message)
def on_error(self, test_item):
self.trace('chunk_event', {"errors": [(test_item.status, self._get_comment(test_item))]})