(rustpython_path, cpython_path)
| 165 | |
| 166 | |
| 167 | def check_lib_completion(rustpython_path, cpython_path): |
| 168 | test_name = "test_" + rustpython_path.name |
| 169 | rustpython_test_path = rustpython_lib / "test" / test_name |
| 170 | cpython_test_path = cpython_lib / "test" / test_name |
| 171 | if cpython_test_path.exists() and not check_test_completion( |
| 172 | rustpython_test_path, cpython_test_path |
| 173 | ): |
| 174 | return False |
| 175 | if rustpython_path.exists() and rustpython_path.is_file(): |
| 176 | if check_diff(rustpython_path, cpython_path) > 0: |
| 177 | return False |
| 178 | return True |
| 179 | return False |
| 180 | |
| 181 | |
| 182 | def handle_notes(display_path) -> list[str]: |
no test coverage detected