Skip to content

Commit 4d9723d

Browse files
committed
bugfix
1 parent 530158c commit 4d9723d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

codeflash/api/aiservice.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ def get_optimization_impact(
530530
coverage_message: str,
531531
replay_tests: str,
532532
root_dir: Path,
533+
concolic_tests: str,
533534
) -> str:
534535
"""Compute the optimization impact of current Pull Request.
535536
@@ -543,6 +544,7 @@ def get_optimization_impact(
543544
coverage_message: str -> coverage information
544545
replay_tests: str -> replay test table
545546
root_dir: Path -> path of git directory
547+
concolic_tests: str -> concolic_tests (not used)
546548
547549
Returns:
548550
-------
@@ -576,6 +578,7 @@ def get_optimization_impact(
576578
"optimized_runtime": humanize_runtime(explanation.best_runtime_ns),
577579
"original_runtime": humanize_runtime(explanation.original_runtime_ns),
578580
}
581+
logger.debug(f"unused {type(concolic_tests)}")
579582
console.rule()
580583
try:
581584
response = self.make_ai_service_request("/optimization_impact", payload=payload, timeout=600)

0 commit comments

Comments
 (0)