Skip to content

Commit d624f95

Browse files
committed
Skip coverage sending during tracing
1 parent fc391da commit d624f95

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

utbot-python-executor/src/main/python/utbot_executor/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "utbot-executor"
3-
version = "1.9.10"
3+
version = "1.9.11"
44
description = ""
55
authors = ["Vyacheslav Tamarin <vyacheslav.tamarin@yandex.ru>"]
66
readme = "README.md"

utbot-python-executor/src/main/python/utbot_executor/utbot_executor/ut_tracer.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,12 @@ def localtrace_count(self, frame, why, arg):
105105
else:
106106
offset = 0
107107
key = UtInstruction(lineno, offset, frame.f_code == self.f_code)
108-
if key not in self.counts:
109-
message = key.serialize()
110-
try:
111-
self.sender.put_message(message)
112-
except Exception:
113-
pass
108+
# if key not in self.counts:
109+
# message = key.serialize()
110+
# try:
111+
# self.sender.put_message(message)
112+
# except Exception:
113+
# pass
114114
self.counts[key] = self.counts.get(key, 0) + 1
115115
self.instructions.append(key)
116116
return self.localtrace
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.9.10
1+
1.9.11

0 commit comments

Comments
 (0)