We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
builtins.function
1 parent 1b38315 commit 4d95b98Copy full SHA for 4d95b98
2 files changed
utbot-python/src/main/kotlin/org/utbot/python/PythonEngine.kt
@@ -242,7 +242,10 @@ class PythonEngine(
242
)
243
244
if (parameters.isEmpty()) {
245
- fuzzingResultHandler(pmd, emptyList())
+ val result = fuzzingResultHandler(pmd, emptyList())
246
+ result?.let {
247
+ emit(it.fuzzingExecutionFeedback)
248
+ }
249
manager.disconnect()
250
} else {
251
PythonFuzzing(pmd.pythonTypeStorage) { description, arguments ->
utbot-python/src/main/resources/requirements.txt
@@ -1,4 +1,4 @@
1
mypy==1.0.0
2
coverage
3
-utbot-executor==1.1.26
+utbot-executor==1.1.27
4
utbot-mypy-runner==0.2.8
0 commit comments