Run cargo llvm-cov on a file.
(file_path: str)
| 5 | |
| 6 | |
| 7 | def run_llvm_cov(file_path: str): |
| 8 | """Run cargo llvm-cov on a file.""" |
| 9 | if file_path.endswith(".py"): |
| 10 | command = ["cargo", "llvm-cov", "--no-report", "run", "--", file_path] |
| 11 | subprocess.call(command) |
| 12 | |
| 13 | |
| 14 | def iterate_files(folder: str): |
no test coverage detected