We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4bb337a commit de0b416Copy full SHA for de0b416
setup.cfg
@@ -3,7 +3,7 @@ max-line-length = 120
3
4
[flake8]
5
max-line-length = 120
6
-ignore = E203,E501
+ignore = E203,E501,W503
7
exclude = .tox,docs
8
9
[mypy]
tests/test_jira.py
@@ -47,5 +47,5 @@ def test_get_issue_comment_not_found(self):
47
48
def test_post_issue_with_invalid_request(self):
49
"""Post an issue but receive a 400 error response"""
50
- # with self.assertRaises(HTTPError):
51
- self.jira.create_issue(fields={"issuetype": "foo", "summary": "summary", "project": "project"})
+ with self.assertRaises(HTTPError):
+ self.jira.create_issue(fields={"issuetype": "foo", "summary": "summary", "project": "project"})
0 commit comments