File: CHANGELOG

package info (click to toggle)
pytest-pep8 1.0.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 152 kB
  • sloc: python: 231; makefile: 5
file content (72 lines) | stat: -rw-r--r-- 1,747 bytes parent folder | download | duplicates (3)
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
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