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 65fb3bd commit 2994ec7Copy full SHA for 2994ec7
2 files changed
tests/utils.py
@@ -61,11 +61,11 @@ def _get_responses_method(method: str) -> str:
61
matchers: List[Any] = []
62
if fixture.get('match_json_params'):
63
matchers.append(
64
- responses.json_params_matcher(fixture['match_json_params'])
+ responses.json_params_matcher(fixture['match_json_params']) # type: ignore
65
)
66
if fixture.get('match_urlencoded_params'):
67
68
- responses.urlencoded_params_matcher(
+ responses.urlencoded_params_matcher( # type: ignore
69
fixture['match_urlencoded_params']
70
71
tox.ini
@@ -12,6 +12,7 @@ deps =
12
pytest
13
flake8
14
responses
15
+ types-requests
16
commands =
17
pytest tests {posargs}
18
mypy --config-file=tox.ini transip tests
0 commit comments