Update hacking
Change-Id: Id7a40b422eaa2874b1e1402c12f28a2fa4f45daa
This commit is contained in:
parent
2df622a7d1
commit
4378355164
@ -724,5 +724,6 @@ def main():
|
||||
|
||||
app.run(CONF.listen_host, CONF.listen_port)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
|
@ -312,6 +312,7 @@ def make_module_group(module_group_id, name=None, modules=None, tag='module'):
|
||||
'modules': modules or {module_group_id},
|
||||
'tag': tag}
|
||||
|
||||
|
||||
BAD_NAME_SUFFIXES = ['Ltd', 'Pvt', 'Inc', 'GmbH', 'AG', 'Corporation', 'Corp',
|
||||
'Company', 'Co', 'Group', 'Srl', 'Limited', 'LLC', 'IT']
|
||||
|
||||
|
@ -98,38 +98,38 @@ class TestStorage(runtime_storage.RuntimeStorage):
|
||||
|
||||
|
||||
def _generate_commits():
|
||||
commit = {
|
||||
'commit_id': uuidutils.generate_uuid(),
|
||||
'lines_added': 9, 'module': 'nova', 'record_type': 'commit',
|
||||
'message': 'Closes bug 1212953\n\nChange-Id: '
|
||||
'I33f0f37b6460dc494abf2520dc109c9893ace9e6\n',
|
||||
'subject': 'Fixed affiliation of Edgar and Sumit', 'loc': 10,
|
||||
'user_id': 'john_doe',
|
||||
'primary_key': uuidutils.generate_uuid(),
|
||||
'author_email': 'john_doe@ibm.com', 'company_name': 'IBM',
|
||||
'lines_deleted': 1, 'week': 2275,
|
||||
'blueprint_id': None, 'bug_id': u'1212953',
|
||||
'files_changed': 1, 'author_name': u'John Doe',
|
||||
'date': 1376737923, 'launchpad_id': u'john_doe',
|
||||
'branches': set([u'master']),
|
||||
'change_id': u'I33f0f37b6460dc494abf2520dc109c9893ace9e6',
|
||||
'release': u'icehouse'
|
||||
}
|
||||
yield commit
|
||||
commit = {
|
||||
'commit_id': uuidutils.generate_uuid(),
|
||||
'lines_added': 9, 'module': 'nova', 'record_type': 'commit',
|
||||
'message': 'Closes bug 1212953\n\nChange-Id: '
|
||||
'I33f0f37b6460dc494abf2520dc109c9893ace9e6\n',
|
||||
'subject': 'Fixed affiliation of Edgar and Sumit', 'loc': 10,
|
||||
'user_id': 'john_doe',
|
||||
'primary_key': uuidutils.generate_uuid(),
|
||||
'author_email': 'john_doe@ibm.com', 'company_name': 'IBM',
|
||||
'lines_deleted': 1, 'week': 2275,
|
||||
'blueprint_id': None, 'bug_id': u'1212953',
|
||||
'files_changed': 1, 'author_name': u'John Doe',
|
||||
'date': 1376737923, 'launchpad_id': u'john_doe',
|
||||
'branches': set([u'master']),
|
||||
'change_id': u'I33f0f37b6460dc494abf2520dc109c9893ace9e6',
|
||||
'release': u'icehouse'
|
||||
}
|
||||
yield commit
|
||||
|
||||
|
||||
def _generate_marks():
|
||||
mark = {
|
||||
'launchpad_id': 'john_doe', 'week': 2294, 'user_id': 'john_doe',
|
||||
'description': 'Approved', 'author_name': 'John Doe',
|
||||
'author_email': 'john_doe@gmail.com',
|
||||
'primary_key': uuidutils.generate_uuid() + 'Workflow',
|
||||
'module': 'glance', 'patch': 2, 'record_type': 'mark',
|
||||
'company_name': '*independent', 'branch': 'master',
|
||||
'date': 1387860458, 'record_id': 37184, 'release': 'icehouse',
|
||||
'value': 1, 'type': 'Workflow',
|
||||
'review_id': uuidutils.generate_uuid()}
|
||||
yield mark
|
||||
mark = {
|
||||
'launchpad_id': 'john_doe', 'week': 2294, 'user_id': 'john_doe',
|
||||
'description': 'Approved', 'author_name': 'John Doe',
|
||||
'author_email': 'john_doe@gmail.com',
|
||||
'primary_key': uuidutils.generate_uuid() + 'Workflow',
|
||||
'module': 'glance', 'patch': 2, 'record_type': 'mark',
|
||||
'company_name': '*independent', 'branch': 'master',
|
||||
'date': 1387860458, 'record_id': 37184, 'release': 'icehouse',
|
||||
'value': 1, 'type': 'Workflow',
|
||||
'review_id': uuidutils.generate_uuid()}
|
||||
yield mark
|
||||
|
||||
|
||||
def _generate_review():
|
||||
|
@ -3,7 +3,7 @@
|
||||
# process, which may cause wedges in the gate later.
|
||||
|
||||
# Hacking already pins down pep8, pyflakes and flake8
|
||||
hacking!=0.13.0,<0.14,>=0.12.0 # Apache-2.0
|
||||
hacking>=3.1.0,<3.2.0 # Apache-2.0
|
||||
coverage>=4.0 # Apache-2.0
|
||||
fixtures>=3.0.0 # Apache-2.0/BSD
|
||||
mock>=2.0,<4.0 # BSD
|
||||
|
Loading…
Reference in New Issue
Block a user