Skip to content

Commit a4c4c2d

Browse files
committed
Merge remote-tracking branch 'origin/codeflash-trace-decorator' into codeflash-trace-decorator
# Conflicts: # codeflash/models/models.py
2 parents d6ed1c3 + 1f3fcff commit a4c4c2d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

codeflash/models/models.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ class OriginalCodeBaseline(BaseModel):
270270
behavioral_test_results: TestResults
271271
benchmarking_test_results: TestResults
272272
replay_benchmarking_test_results: Optional[dict[BenchmarkKey, TestResults]] = None
273+
line_profile_results: dict
273274
runtime: int
274275
coverage_results: Optional[CoverageData]
275276

codeflash/verification/verification_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
from pydantic.dataclasses import dataclass
88

9+
from codeflash.code_utils.compat import SAFE_SYS_EXECUTABLE
10+
911

1012
def get_test_file_path(test_dir: Path, function_name: str, iteration: int = 0, test_type: str = "unit") -> Path:
1113
assert test_type in ["unit", "inspired", "replay", "perf"]

0 commit comments

Comments
 (0)