File python-coverage.changes of Package python-coverage
1
-------------------------------------------------------------------
2
Tue Nov 20 18:15:53 UTC 2012 - saschpe@suse.de
3
4
- Update to version 3.5.3:
5
+ Line numbers in the HTML report line up better with the source lines, fixing
6
issue 197
7
+ When specifying a directory as the source= option, the directory itself no
8
longer needs to have a __init__.py file, though its subdirectories do, to
9
be considered as source files.
10
+ Files encoded as UTF-8 with a BOM are now properly handled, fixing
11
issue 179_.
12
+ Fixed more cases of non-Python files being reported as Python source, and
13
then not being able to parse them as Python. Closes issue 82 (again).
14
+ Fixed memory leaks under Python 3, thanks, Brett Cannon. Closes issue 147_.
15
+ Optimized .pyo files may not have been handled correctly, issue 195_.
16
+ Certain unusually named file paths could have been mangled during reporting,
17
issue 194_.
18
+ Try to do a better job of the impossible task of detecting when we can't
19
build the C extension, fixing issue 183_.
20
+ Testing is now done with tox
21
- Changes from version 3.5.2:
22
+ No changes since 3.5.2.b1
23
- Changes from version 3.5.2b1
24
+ The HTML report has slightly tweaked controls: the buttons at the top of
25
the page are color-coded to the source lines they affect.
26
+ Custom CSS can be applied to the HTML report by specifying a CSS file as
27
the extra_css configuration value in the [html] section.
28
+ Source files with custom encodings declared in a comment at the top are now
29
properly handled during reporting on Python 2. Python 3 always handled them
30
properly. This fixes issue 157_.
31
+ Backup files left behind by editors are no longer collected by the source=
32
option, fixing issue 168_.
33
+ If a file doesn't parse properly as Python, we don't report it as an error
34
if the filename seems like maybe it wasn't meant to be Python. This is a
35
pragmatic fix for issue 82_.
36
+ The -m switch on coverage report, which includes missing line numbers
37
in the summary report, can now be specifed as show_missing in the
38
config file. Closes issue 173_.
39
+ When running a module with coverage run -m <modulename>, certain details
40
of the execution environment weren't the same as for
41
python -m <modulename>. This had the unfortunate side-effect of making
42
coverage run -m unittest discover not work if you had tests in a
43
directory named "test". This fixes issue 155_.
44
+ Now the exit status of your product code is properly used as the process
45
status when running python -m coverage run .... Thanks, JT Olds.
46
+ When installing into pypy, we no longer attempt (and fail) to compile
47
the C tracer function, closing issue 166_.
48
49
-------------------------------------------------------------------
50
Thu May 24 11:47:40 UTC 2012 - cfarrell@suse.com
51
52
- license update: BSD-2-Clause and (GPL-2.0+ or MIT)
53
__init__.py is the only file with a definitive license statement
54
(BSD-2-Clause). Also, package contains jquery components (GPL-2.0+ or
55
MIT)
56
57
-------------------------------------------------------------------
58
Wed May 23 07:30:26 UTC 2012 - highwaystar.ru@gmail.com
59
60
- python3 package added
61
- minor spec improvement (files section)
62
63
-------------------------------------------------------------------
64
Sat Mar 10 16:54:01 UTC 2012 - saschpe@gmx.de
65
66
- Simplify macro usage
67
68
-------------------------------------------------------------------
69
Thu Nov 10 11:11:58 UTC 2011 - saschpe@suse.de
70
71
- Update to version 3.5.1:
72
* The [paths] feature unfortunately didn't work in real world situations
73
where you wanted to, you know, report on the combined data. Now all paths
74
stored in the combined file are canonicalized properly.
75
76
-------------------------------------------------------------------
77
Tue Sep 27 08:32:20 UTC 2011 - saschpe@suse.de
78
79
- Add python-distribute runtime requirement
80
81
-------------------------------------------------------------------
82
Thu Sep 8 15:43:42 UTC 2011 - saschpe@suse.de
83
84
- Update to version 3.5.1b1:
85
* for-else constructs are understood better, and don't cause erroneous partial
86
branch warnings. Fixes issue 122.
87
* Branch coverage for with statements is improved, fixing issue 128.
88
* The number of partial branches reported on the HTML summary page was
89
different than the number reported on the individual file pages. This is
90
now fixed.
91
* An explicit include directive to measure files in the Python installation
92
wouldn't work because of the standard library exclusion. Now the include
93
directive takes precendence, and the files will be measured. Fixes
94
issue 138.
95
* The HTML report now handles Unicode characters in Python source files
96
properly. This fixes issue 124 and issue 144. Thanks, Devin
97
Jeanpierre.
98
* In order to help the core developers measure the test coverage of the
99
standard library, Brandon Rhodes devised an aggressive hack to trick Python
100
into running some coverage code before anything else in the process.
101
See the coverage/fullcoverage directory if you are interested.
102
...see CHANGES.txt for more
103
- Spec file cleanup:
104
* Use python-distribute instead of python-setuptools
105
* Changed license to BSD-3-Clause (SPDX style)
106
107
-------------------------------------------------------------------
108
Fri May 6 12:32:26 UTC 2011 - saschpe@suse.de
109
110
- Update to version 3.4:
111
+ The XML report is now sorted by package name, fixing issue 88.
112
+ Programs that exited with sys.exit() with no argument weren't handled
113
properly, producing a coverage.py stack trace. That is now fixed.
114
- Changes from version 3.3.1:
115
+ Using parallel=True in .coveragerc file prevented reporting, but now does
116
not, fixing issue 49.
117
+ When running your code with "coverage run", if you call sys.exit(),
118
coverage.py will exit with that status code, fixing issue 50.
119
- Added documentation (AUTHORS.txt, CHANGES.txt and README.txt)
120
- Addded changes file
121
122
-------------------------------------------------------------------
123
Sat Aug 22 12:00:00 UTC 2009 - cfarrell1980@gmail.com
124
125
- Require setuptools
126
127
-------------------------------------------------------------------
128
Thu May 28 12:00:00 UTC 2009 - cfarrell1980@gmail.com
129
130
- Initial import
131
132