@@ -25,7 +25,7 @@ def test_main_noop(tmpdir):
25
25
assert cfg .read () == s
26
26
27
27
28
- def test_main_writes_both (tmpdir ):
28
+ def test_main_writes_all (tmpdir ):
29
29
cfg = tmpdir .join ('.pre-commit-config.yaml' )
30
30
cfg .write (
31
31
'repos:\n '
@@ -44,7 +44,12 @@ def test_main_writes_both(tmpdir):
44
44
' rev: 6.0.0\n '
45
45
' hooks:\n '
46
46
' - id: flake8\n '
47
- # all 3 below should be rewritten
47
+ # gives the `mypy` version
48
+ '- repo: https://github.com/pre-commit/mirrors-mypy\n '
49
+ ' rev: v1.13.0\n '
50
+ ' hooks:\n '
51
+ ' - id: mypy\n '
52
+ # all repos below should have their additional_dependencies rewritten
48
53
'- repo: https://github.com/asottile/yesqa\n '
49
54
' rev: v1.5.0\n '
50
55
' hooks:\n '
@@ -57,13 +62,20 @@ def test_main_writes_both(tmpdir):
57
62
' - id: blacken-docs\n '
58
63
' additional_dependencies:\n '
59
64
' - black==22.12.0\n '
65
+ '- repo: https://github.com/nbQA-dev/nbQA\n '
66
+ ' rev: 1.9.1\n '
67
+ ' hooks:\n '
68
+ ' - id: nbqa-mypy\n '
69
+ ' additional_dependencies:\n '
70
+ ' - mypy==0.910\n '
60
71
'- repo: https://github.com/example/example\n '
61
72
' rev: v1.0.0\n '
62
73
' hooks:\n '
63
74
' - id: example\n '
64
75
' additional_dependencies:\n '
65
76
' - black==22.12.0\n '
66
- ' - flake8==5.0.0\n ' ,
77
+ ' - flake8==5.0.0\n '
78
+ ' - mypy==0.123\n ' ,
67
79
)
68
80
69
81
assert main ((str (cfg ),))
@@ -82,6 +94,10 @@ def test_main_writes_both(tmpdir):
82
94
' rev: 6.0.0\n '
83
95
' hooks:\n '
84
96
' - id: flake8\n '
97
+ '- repo: https://github.com/pre-commit/mirrors-mypy\n '
98
+ ' rev: v1.13.0\n '
99
+ ' hooks:\n '
100
+ ' - id: mypy\n '
85
101
'- repo: https://github.com/asottile/yesqa\n '
86
102
' rev: v1.5.0\n '
87
103
' hooks:\n '
@@ -94,13 +110,20 @@ def test_main_writes_both(tmpdir):
94
110
' - id: blacken-docs\n '
95
111
' additional_dependencies:\n '
96
112
' - black==23.3.0\n '
113
+ '- repo: https://github.com/nbQA-dev/nbQA\n '
114
+ ' rev: 1.9.1\n '
115
+ ' hooks:\n '
116
+ ' - id: nbqa-mypy\n '
117
+ ' additional_dependencies:\n '
118
+ ' - mypy==1.13.0\n '
97
119
'- repo: https://github.com/example/example\n '
98
120
' rev: v1.0.0\n '
99
121
' hooks:\n '
100
122
' - id: example\n '
101
123
' additional_dependencies:\n '
102
124
' - black==23.3.0\n '
103
125
' - flake8==6.0.0\n '
126
+ ' - mypy==1.13.0\n '
104
127
)
105
128
106
129
@@ -117,15 +140,23 @@ def test_main_no_dep_on_one_and_writes_other(tmpdir):
117
140
' hooks:\n '
118
141
' - id: yesqa\n '
119
142
' additional_dependencies:\n '
120
- # should not be rewritten because target version can't be found
143
+ # should not be rewritten because target versions can't be found
121
144
' - flake8==5.0.0\n '
145
+ ' - mypy==0.910\n '
122
146
'- repo: https://github.com/adamchainz/blacken-docs\n '
123
147
' rev: 1.15.0\n '
124
148
' hooks:\n '
125
149
' - id: blacken-docs\n '
126
150
' additional_dependencies:\n '
127
151
# should be rewritten
128
- ' - black==22.12.0\n ' ,
152
+ ' - black==22.12.0\n '
153
+ '- repo: https://github.com/nbQA-dev/nbQA\n '
154
+ ' rev: 1.9.1\n '
155
+ ' hooks:\n '
156
+ ' - id: nbqa-mypy\n '
157
+ ' additional_dependencies:\n '
158
+ # should not be rewritten because target version can't be found
159
+ ' - mypy==0.123' ,
129
160
)
130
161
131
162
assert main ((str (cfg ),))
@@ -142,10 +173,17 @@ def test_main_no_dep_on_one_and_writes_other(tmpdir):
142
173
' - id: yesqa\n '
143
174
' additional_dependencies:\n '
144
175
' - flake8==5.0.0\n '
176
+ ' - mypy==0.910\n '
145
177
'- repo: https://github.com/adamchainz/blacken-docs\n '
146
178
' rev: 1.15.0\n '
147
179
' hooks:\n '
148
180
' - id: blacken-docs\n '
149
181
' additional_dependencies:\n '
150
182
' - black==23.3.0\n '
183
+ '- repo: https://github.com/nbQA-dev/nbQA\n '
184
+ ' rev: 1.9.1\n '
185
+ ' hooks:\n '
186
+ ' - id: nbqa-mypy\n '
187
+ ' additional_dependencies:\n '
188
+ ' - mypy==0.123\n '
151
189
)
0 commit comments