We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07cc91b commit 60b356cCopy full SHA for 60b356c
codeflash/verification/concolic_testing.py
@@ -36,7 +36,8 @@ def generate_concolic_tests(
36
37
if (
38
test_cfg.concolic_test_root_dir
39
- and isinstance(function_to_optimize_ast, (ast.FunctionDef, ast.AsyncFunctionDef))
+ and isinstance(function_to_optimize_ast, ast.FunctionDef) # Exclude async functions
40
+ and not isinstance(function_to_optimize_ast, ast.AsyncFunctionDef)
41
and has_typed_parameters(function_to_optimize_ast, function_to_optimize.parents)
42
):
43
logger.info("Generating concolic opcode coverage tests for the original code…")
0 commit comments