Update hacking

Change-Id: Id7a40b422eaa2874b1e1402c12f28a2fa4f45daa
This commit is contained in:
Sergey Nikitin 2020-09-18 11:52:52 +04:00
parent 2df622a7d1
commit 4378355164
5 changed files with 33 additions and 31 deletions

View File

@ -724,5 +724,6 @@ def main():
app.run(CONF.listen_host, CONF.listen_port) app.run(CONF.listen_host, CONF.listen_port)
if __name__ == '__main__': if __name__ == '__main__':
main() main()

View File

@ -312,6 +312,7 @@ def make_module_group(module_group_id, name=None, modules=None, tag='module'):
'modules': modules or {module_group_id}, 'modules': modules or {module_group_id},
'tag': tag} 'tag': tag}
BAD_NAME_SUFFIXES = ['Ltd', 'Pvt', 'Inc', 'GmbH', 'AG', 'Corporation', 'Corp', BAD_NAME_SUFFIXES = ['Ltd', 'Pvt', 'Inc', 'GmbH', 'AG', 'Corporation', 'Corp',
'Company', 'Co', 'Group', 'Srl', 'Limited', 'LLC', 'IT'] 'Company', 'Co', 'Group', 'Srl', 'Limited', 'LLC', 'IT']

View File

@ -98,38 +98,38 @@ class TestStorage(runtime_storage.RuntimeStorage):
def _generate_commits(): def _generate_commits():
commit = { commit = {
'commit_id': uuidutils.generate_uuid(), 'commit_id': uuidutils.generate_uuid(),
'lines_added': 9, 'module': 'nova', 'record_type': 'commit', 'lines_added': 9, 'module': 'nova', 'record_type': 'commit',
'message': 'Closes bug 1212953\n\nChange-Id: ' 'message': 'Closes bug 1212953\n\nChange-Id: '
'I33f0f37b6460dc494abf2520dc109c9893ace9e6\n', 'I33f0f37b6460dc494abf2520dc109c9893ace9e6\n',
'subject': 'Fixed affiliation of Edgar and Sumit', 'loc': 10, 'subject': 'Fixed affiliation of Edgar and Sumit', 'loc': 10,
'user_id': 'john_doe', 'user_id': 'john_doe',
'primary_key': uuidutils.generate_uuid(), 'primary_key': uuidutils.generate_uuid(),
'author_email': 'john_doe@ibm.com', 'company_name': 'IBM', 'author_email': 'john_doe@ibm.com', 'company_name': 'IBM',
'lines_deleted': 1, 'week': 2275, 'lines_deleted': 1, 'week': 2275,
'blueprint_id': None, 'bug_id': u'1212953', 'blueprint_id': None, 'bug_id': u'1212953',
'files_changed': 1, 'author_name': u'John Doe', 'files_changed': 1, 'author_name': u'John Doe',
'date': 1376737923, 'launchpad_id': u'john_doe', 'date': 1376737923, 'launchpad_id': u'john_doe',
'branches': set([u'master']), 'branches': set([u'master']),
'change_id': u'I33f0f37b6460dc494abf2520dc109c9893ace9e6', 'change_id': u'I33f0f37b6460dc494abf2520dc109c9893ace9e6',
'release': u'icehouse' 'release': u'icehouse'
} }
yield commit yield commit
def _generate_marks(): def _generate_marks():
mark = { mark = {
'launchpad_id': 'john_doe', 'week': 2294, 'user_id': 'john_doe', 'launchpad_id': 'john_doe', 'week': 2294, 'user_id': 'john_doe',
'description': 'Approved', 'author_name': 'John Doe', 'description': 'Approved', 'author_name': 'John Doe',
'author_email': 'john_doe@gmail.com', 'author_email': 'john_doe@gmail.com',
'primary_key': uuidutils.generate_uuid() + 'Workflow', 'primary_key': uuidutils.generate_uuid() + 'Workflow',
'module': 'glance', 'patch': 2, 'record_type': 'mark', 'module': 'glance', 'patch': 2, 'record_type': 'mark',
'company_name': '*independent', 'branch': 'master', 'company_name': '*independent', 'branch': 'master',
'date': 1387860458, 'record_id': 37184, 'release': 'icehouse', 'date': 1387860458, 'record_id': 37184, 'release': 'icehouse',
'value': 1, 'type': 'Workflow', 'value': 1, 'type': 'Workflow',
'review_id': uuidutils.generate_uuid()} 'review_id': uuidutils.generate_uuid()}
yield mark yield mark
def _generate_review(): def _generate_review():

View File

@ -3,7 +3,7 @@
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
# Hacking already pins down pep8, pyflakes and flake8 # 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 coverage>=4.0 # Apache-2.0
fixtures>=3.0.0 # Apache-2.0/BSD fixtures>=3.0.0 # Apache-2.0/BSD
mock>=2.0,<4.0 # BSD mock>=2.0,<4.0 # BSD

View File

@ -36,7 +36,7 @@ commands = python setup.py build_sphinx
[flake8] [flake8]
# E123, E125 skipped as they are invalid PEP-8 # E123, E125 skipped as they are invalid PEP-8
ignore = ignore = W605, W503, W504, E731
show-source = true show-source = true
builtins = _ builtins = _
exclude=.venv*,.git,.tox,dist,doc,*lib/python*,*egg,tools,build exclude=.venv*,.git,.tox,dist,doc,*lib/python*,*egg,tools,build