3 # This script is for updating the .pickle test files when there are changes to
4 # the default metadata, e.g. adding a new key/tag.
9 for picklefile in glob.glob('*.pickle'):
10 p = pickle.load(open(picklefile))
12 for build in p['builds']:
13 build['gradleprops'] = []
15 pickle.dump(p, open(picklefile, 'w'))