Skip to content

Commit

Permalink
Merge pull request #153 from stopthatcow/feature/152_upgrade_depepnde…
Browse files Browse the repository at this point in the history
…ncies

Upgrade depepndencies
  • Loading branch information
stopthatcow authored Apr 7, 2019
2 parents 6f07c62 + c78feae commit 9c461c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@
keywords='jira, git, github',
packages=setuptools.find_packages(exclude=('tests', 'docs')),
package_data={'zazu': ['githooks/*', 'version.txt']},
install_requires=['click>=6.7', # BSD
'requests>=2.18.4', # Apache 2.0
install_requires=['click>=7.0', # BSD
'PyGithub>=1.36.0', # LGPL 3
'jira>=1.0.11', # BSD
'GitPython>=2.1.8', # BSD
Expand Down
4 changes: 2 additions & 2 deletions tests/test_jira_issue_tracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def test_from_config_no_url():
assert str(e.value) == 'Jira config requires a "url" field'


def test_jira_validate_id_format():
uut = tracker_mock()
def test_jira_validate_id_format(tracker_mock):
uut = tracker_mock
assert uut.validate_id_format('ZZ-10') == 'ZZ-10'
assert uut.validate_id_format('Zz-10') == 'ZZ-10'
assert uut.validate_id_format('zz-10') == 'ZZ-10'
Expand Down

0 comments on commit 9c461c9

Please sign in to comment.