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 16d21e7 commit cc84732Copy full SHA for cc84732
codeflash/code_utils/coverage_utils.py
@@ -45,7 +45,7 @@ def generate_candidates(source_code_path: Path) -> list[str]:
45
current_path = source_code_path.parent
46
47
while current_path != current_path.parent:
48
- candidate_path = str(Path(current_path.name) / candidates[-1])
+ candidate_path = (Path(current_path.name) / candidates[-1]).as_posix()
49
candidates.append(candidate_path)
50
current_path = current_path.parent
51
0 commit comments