Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ class PythonTestCaseGenerator(
val typeInferenceCancellation =
{ isCancelled() || System.currentTimeMillis() >= until || missingLines?.size == 0 }

logger.info("Start test generation for ${method.name}")
substituteTypeParameters(method, typeStorage).forEach { newMethod ->
inferAnnotations(
newMethod,
Expand Down Expand Up @@ -226,7 +227,7 @@ class PythonTestCaseGenerator(
}
}


logger.info("Collect all test executions for ${method.name}")
val (successfulExecutions, failedExecutions) = executions.partition { it.result is UtExecutionSuccess }

return PythonTestSet(
Expand Down Expand Up @@ -301,4 +302,4 @@ class PythonTestCaseGenerator(
algo.run(hintCollector.result, isCancelled, annotationHandler)
}
}
}
}