(filename)
| 1149 | sys.exit(0) |
| 1150 | |
| 1151 | def file_to_string(filename): |
| 1152 | with open(filename, encoding='utf8') as f: |
| 1153 | return f.read().strip() |
| 1154 | |
| 1155 | def download_keys(): |
| 1156 | download('KEYS', "https://downloads.apache.org/solr/KEYS", state.config_path) |
no test coverage detected
searching dependent graphs…