@@ -108,57 +108,87 @@ decorators are extracted from the ast.
108
108
-U -r requirements.txt`.
109
109
* Start developing.
110
110
* To run all tests with [ tox] ( https://tox.readthedocs.io/en/latest/ ) ,
111
- Python 3.7, 3.8, 3.9 and 3.10 must be available. You might want to look
111
+ Python 3.7, 3.8, 3.9, 3.10 and 3.11 must be available. You might want to look
112
112
into using [ pyenv] ( https://github.com/pyenv/pyenv ) .
113
113
114
114
115
115
# Changelog
116
116
117
- ## Upcoming
117
+ ## v0.1.0
118
118
119
- * Implement support for flexible matching of mypy error codes
119
+ * Implement support for flexible matching of mypy error codes (towards [ #36 ] [ i36 ] , [ #41 ] [ p41 ] )
120
+ * Add support for pytest 7.2.x ([ #42 ] [ p42 ] )
121
+ * Add support for mypy 1.0.x ([ #42 ] [ p42 ] )
122
+ * Add support for Python 3.11 ([ #42 ] [ p42 ] )
123
+ * Drop support for pytest 6.x ([ #42 ] [ p42 ] )
124
+ * Drop support for mypy versions less than 0.931 ([ #42 ] [ p42 ] )
120
125
121
126
## v0.0.12
122
127
123
- * Allow Windows drives in filename (#17 , #34 )
124
- * Support async def tests (#30 , #31 )
125
- * Add support for mypy 0.971 (#27 )
126
- * Remove support for Python 3.6 (#32 )
128
+ * Allow Windows drives in filename ([ #17 ] [ i17 ] , [ #34 ] [ p34 ] )
129
+ * Support async def tests ([ #30 ] [ i30 ] , [ #31 ] [ p31 ] )
130
+ * Add support for mypy 0.971 ([ #35 ] [ i35 ] , [ #27 ] [ i27 ] )
131
+ * Remove support for Python 3.6 ([ #32 ] [ p32 ] )
132
+ * Bump development dependencies ([ #40 ] [ p40 ] )
127
133
128
134
## v0.0.11
129
135
130
- * Add support for mypy 0.960 (#25 )
136
+ * Add support for mypy 0.960 ([ #25 ] [ p25 ] )
131
137
132
138
## v0.0.10
133
139
134
- * Add support for pytest 7.0.x and require Python >= 3.7 (#23 )
135
- * Bump dependencies (#24 )
140
+ * Add support for pytest 7.0.x and require Python >= 3.7 ([ #23 ] [ p23 ] )
141
+ * Bump dependencies ([ #24 ] [ p24 ] )
136
142
137
143
## v0.0.9
138
144
139
- * Disable soft error limit (#21 )
145
+ * Disable soft error limit ([ #21 ] [ p21 ] )
140
146
141
147
## v0.0.8
142
148
143
- * Normalize messages to enable support for mypy 0.902 and pytest 6.2.4 (#20 )
149
+ * Normalize messages to enable support for mypy 0.902 and pytest 6.2.4 ([ #20 ] [ p20 ] )
144
150
145
151
## v0.0.7
146
152
147
- * Fix ` PYTEST_VERSION_INFO ` - by [ @blueyed ] ( https://github.com/blueyed ) (# 8 )
148
- * Always pass ` --check-untyped-defs ` to mypy (#11 )
149
- * Respect pytest config ` python_files ` when identifying pytest test modules (#12 )
153
+ * Fix ` PYTEST_VERSION_INFO ` - by [ @blueyed ] ( https://github.com/blueyed ) ([ # 8 ] [ p8 ] )
154
+ * Always pass ` --check-untyped-defs ` to mypy ([ #11 ] [ p11 ] )
155
+ * Respect pytest config ` python_files ` when identifying pytest test modules ([ #12 ] [ p12 ] )
150
156
151
157
## v0.0.6 - add pytest 5.4 support
152
158
153
- * Update the plugin to work with pytest 5.4 (# 7 )
159
+ * Update the plugin to work with pytest 5.4 ([ # 7 ] [ p7 ] )
154
160
155
161
## v0.0.5 - CI improvements
156
162
157
- * Make invoke tasks work (partially) on Windows (# 6 )
163
+ * Make invoke tasks work (partially) on Windows ([ # 6 ] [ p6 ] )
158
164
* Add an invoke task to run tox environments by selecting globs (e.g.,
159
- ` inv tox -e py-* ` ) (# 6 )
165
+ ` inv tox -e py-* ` ) ([ # 6 ] [ p6 ] )
160
166
* Use coverage directly for code coverage to get more consistent
161
- parallel run results (# 6 )
167
+ parallel run results ([ # 6 ] [ p6 ] )
162
168
* Use flit fork dflit to make packaging work with ` LICENSES ` directory
163
- (#6 )
164
- * Bump dependencies (#6 )
169
+ ([ #6 ] [ p6 ] )
170
+ * Bump dependencies ([ #6 ] [ p6 ] )
171
+
172
+
173
+ [ i17 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/17
174
+ [ i27 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/27
175
+ [ i30 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/30
176
+ [ i35 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/35
177
+ [ i36 ] : https://github.com/davidfritzsche/pytest-mypy-testing/issues/36
178
+
179
+ [ p6 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/6
180
+ [ p7 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/7
181
+ [ p8 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/8
182
+ [ p11 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/11
183
+ [ p12 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/12
184
+ [ p20 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/20
185
+ [ p21 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/21
186
+ [ p23 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/23
187
+ [ p24 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/24
188
+ [ p25 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/25
189
+ [ p31 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/31
190
+ [ p32 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/32
191
+ [ p34 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/34
192
+ [ p40 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/40
193
+ [ p41 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/41
194
+ [ p42 ] : https://github.com/davidfritzsche/pytest-mypy-testing/pull/42
0 commit comments