(rustpython_path, cpython_path)
| 154 | |
| 155 | |
| 156 | def check_test_completion(rustpython_path, cpython_path): |
| 157 | if rustpython_path.exists() and rustpython_path.is_file(): |
| 158 | if cpython_path.exists() and cpython_path.is_file(): |
| 159 | if not rustpython_path.exists() or not rustpython_path.is_file(): |
| 160 | return False |
| 161 | elif check_diff(rustpython_path, cpython_path) > 0: |
| 162 | return False |
| 163 | return True |
| 164 | return False |
| 165 | |
| 166 | |
| 167 | def check_lib_completion(rustpython_path, cpython_path): |
no test coverage detected