forked from davidraleigh/pytest-pep8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
executable file
·76 lines (51 loc) · 1.73 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
1.0.7.dev
----------
1.0.6
----------
- fix tests to accomodate newer pep version which is more sensitive
to detecting "E265 too many spaces"
- add py34 to tox.ini
- clarified in setup.py that license is MIT
1.0.5
--------------
- use pytest-2.4.2 node.add_marker() API for adding "pep8" marker
1.0.4
---------------------------------
- fix issue2: make pep8 interoperate with --strict runs
1.0.3
----------------------------------------------
- added pep8maxlinelength ini setting to configure the maximum allowed
line length.
- add tox.ini and test_pep8.py to distribution
1.0.2
----------------------------------------------
- fix a parsing bug - # is now recognized as
as comment and ALL will now be recognized
even if other codes are specified (nonsensically)
1.0.1
----------------------------------------------
- add pytest-cache dep to setup.py
1.0
----------------------------------------------
- extend pep8ignore to allow lines of form
"glob CODE1 CODE2", for example: "test/*.py W293 E203"
- speed up tests by preventing pep8 checking if
a file was unmodified after its last change.
- simplified pep8 checker usage (thanks flox)
0.9.1
----------------------------------------------
- fixed compatibility with pep8==1.3
- made pytest_pep8 source itself pep9 compliant
0.8
----------------------------------------------
- fix a bug with ignore option when the ignore count is higher than
the error count (thanks Tetsuya Morimoto)
0.7
----------------------------------------------
- change defaults and ini-file option name:
now all pep8 checks are enabled and need to
be explicitely ignored through a "pep8ignore" setting
in the ini file.
0.6
----------------------------------------------
- initial release