Created
March 18, 2012 17:40
-
-
Save douglatornell/2078378 to your computer and use it in GitHub Desktop.
Options for keys list for buildbot try job parser
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Incremental: | |
v1_keys = ['jobid', 'branch', 'baserev', 'patch_level', 'patch_body'] | |
v2_keys = v1_keys + ['repository', 'project'] | |
v3_keys = v2_keys + ['who'] | |
v4_keys = v3_keys + ['comment'] | |
keys = [v1_keys, v2_keys, v3_keys, v4_keys] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# List of tuples: | |
keys = [ | |
# v1: | |
('jobid', 'branch', 'baserev', 'patch_level', 'patch_body'), | |
# v2 introduces repository and project | |
('jobid', 'branch', 'baserev', 'patch_level', 'patch_body', | |
'repository', 'project'), | |
# v3 introduces who | |
('jobid', 'branch', 'baserev', 'patch_level', 'patch_body', | |
'repository', 'project', 'who'), | |
# v4 introduces comment | |
('jobid', 'branch', 'baserev', 'patch_level', 'patch_body', | |
'repository', 'project', 'who', 'comment')] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I like incremental