(version, openApiDirUrl)
| 370 | # Make sure to shutdown the GPG agent at the end |
| 371 | stopGpgAgent(gpgHomeDir, logFile) |
| 372 | |
| 373 | def stopGpgAgent(gpgHomeDir, logFile): |
| 374 | run('gpgconf --homedir %s --kill gpg-agent' % (gpgHomeDir), logFile) |
| 375 | |
| 376 | def testChanges(version, changesURLString): |
| 377 | print(' check changes HTML...') |
| 378 | changesURL = None |
| 379 | for text, subURL in getDirEntries(changesURLString): |
| 380 | if text == 'Changes.html': |
| 381 | changesURL = subURL |
| 382 | |
| 383 | if changesURL is None: |
| 384 | raise RuntimeError('did not see Changes.html link from %s' % changesURLString) |
no test coverage detected
searching dependent graphs…