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 2ac806e commit adc8c10Copy full SHA for adc8c10
.github/workflows/ci.yml
@@ -34,8 +34,8 @@ jobs:
34
with:
35
python-version: '3.9'
36
37
- - name: Install Mypy Dependencies
38
- run: pip install mypy
+ - name: Install Test Dependencies
+ run: pip install .[test]
39
40
- name: Type Checking with Mypy
41
run: mypy
setup.py
@@ -19,12 +19,14 @@
19
]
20
21
TEST_REQUIRES = [
22
+ 'mypy',
23
'pre-commit',
24
'pytest >=4.6.6',
25
'pytest-cov >=2.8.1',
26
'pytest-subtests',
27
'responses >=0.8.1',
28
'types-requests',
29
+ 'types-Jinja2',
30
'mypy',
31
32
0 commit comments