(display_name)
| 147 | |
| 148 | |
| 149 | def check_completion_pr(display_name): |
| 150 | for lib in updated_libs: |
| 151 | if lib == str(display_name): |
| 152 | return updated_libs[lib].done, updated_libs[lib].pr |
| 153 | return False, None |
| 154 | |
| 155 | |
| 156 | def check_test_completion(rustpython_path, cpython_path): |
no test coverage detected