File tree Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Expand file tree Collapse file tree 2 files changed +20
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Consider you have this code::
33
33
34
34
Running it with pytest-flakes installed shows two issues::
35
35
36
- $ py.test -q --flakes
36
+ $ py.test -q --flakes
37
37
F
38
38
================================= FAILURES =================================
39
39
______________________________ pyflakes-check ______________________________
@@ -68,10 +68,10 @@ Rerunning with the above example will now look better::
68
68
1 failed in 0.00 seconds
69
69
70
70
But of course we still would want to delete the ``import os `` line to
71
- have a clean pass.
71
+ have a clean pass.
72
72
73
73
If you have some files where you want to specifically ignore
74
- some errors or warnings you can start a flakes-ignore line with
74
+ some errors or warnings you can start a flakes-ignore line with
75
75
a glob-pattern and a space-separated list of codes::
76
76
77
77
# content of setup.cfg
@@ -80,7 +80,7 @@ a glob-pattern and a space-separated list of codes::
80
80
*.py UnusedImport
81
81
doc/conf.py ALL
82
82
83
-
83
+
84
84
Ignoring certain lines in files
85
85
-------------------------------
86
86
@@ -121,6 +121,21 @@ and Holger Krekel's pytest-pep8.
121
121
Changes
122
122
=======
123
123
124
+ 4.0.1 - 2020-07-28
125
+ ------------------
126
+
127
+ - Maintenance of pytest-flakes has moved from fschulze to asmeurer. The repo
128
+ for pytest-flakes is now at https://github.com/asmeurer/pytest-flakes/
129
+
130
+ - Fix test failures.
131
+ [asmeurer]
132
+
133
+ - Fix deprecation warnings from pytest.
134
+ [asmeurer]
135
+
136
+ - Fix invalid escape sequences.
137
+ [akeeman]
138
+
124
139
4.0.0 - 2018-08-01
125
140
------------------
126
141
Original file line number Diff line number Diff line change 5
5
description = 'pytest plugin to check source code with pyflakes' ,
6
6
long_description = open ("README.rst" ).read (),
7
7
license = "MIT license" ,
8
- version = '4.0.0 ' ,
8
+ version = '4.0.1 ' ,
9
9
author = 'Florian Schulze, Holger Krekel and Ronny Pfannschmidt' ,
10
10
url = 'https://github.com/asmeurer/pytest-flakes' ,
11
11
classifiers = [
You can’t perform that action at this time.
0 commit comments