19
19
applied even when the report is empty. Thanks, Ionel Cristian Mărieș.
20
20
21
21
- Plugins are now initialized differently. Instead of looking for a class
22
- called ``Plugin``, coverage looks for a function called ``coverage_init``.
22
+ called ``Plugin``, coverage.py looks for a function called ``coverage_init``.
23
23
24
24
- Code that was executed with `exec` would be mis-attributed to the file that
25
25
called it. This is now fixed, closing `issue 380`_.
@@ -30,7 +30,11 @@ Latest
30
30
``Coverage.get_data``, and returns the ``CoverageData`` containing the
31
31
collected data.
32
32
33
+ - The project is consistently referred to as "coverage.py" throughout the code
34
+ and the documentation, closing `issue 275`_.
35
+
33
36
.. _issue 236: https://bitbucket.org/ned/coveragepy/issues/236/pickles-are-bad-and-you-should-feel-bad
37
+ .. _issue 275: https://bitbucket.org/ned/coveragepy/issues/275/refer-consistently-to-project-as-coverage
34
38
.. _issue 380: https://bitbucket.org/ned/coveragepy/issues/380/code-executed-by-exec-excluded-from
35
39
36
40
.. 41 issues closed in 4.0 below here
@@ -41,7 +45,7 @@ Version 4.0a6 --- 21 June 2015
41
45
42
46
- Python 3.5b2 and PyPy 2.6.0 are supported.
43
47
44
- - The original module-level function interface to coverage is no longer
48
+ - The original module-level function interface to coverage.py is no longer
45
49
supported. You must now create a ``coverage.Coverage`` object, and use
46
50
methods on it.
47
51
@@ -116,7 +120,7 @@ Version 4.0a5 --- 16 February 2015
116
120
Eduardo Schettino. Currently, this does not work on Windows.
117
121
118
122
- A new warning is possible, if a desired file isn't measured because it was
119
- imported before coverage was started (`issue 353`_).
123
+ imported before coverage.py was started (`issue 353`_).
120
124
121
125
- The `coverage.process_startup` function now will start coverage measurement
122
126
only once, no matter how many times it is called. This fixes problems due
@@ -213,8 +217,8 @@ Version 4.0a2 --- 14 January 2015
213
217
214
218
- The ``--debug`` switch can now be used on any command.
215
219
216
- - You can now programmatically adjust the configuration of coverage by setting
217
- items on `Coverage.config` after construction.
220
+ - You can now programmatically adjust the configuration of coverage.py by
221
+ setting items on `Coverage.config` after construction.
218
222
219
223
- A module run with ``-m`` can be used as the argument to ``--source``, fixing
220
224
`issue 328`_. Thanks, Buck Evan.
@@ -225,7 +229,7 @@ Version 4.0a2 --- 14 January 2015
225
229
- Made some PyPy-specific tweaks to improve speed under PyPy. Thanks, Alex
226
230
Gaynor.
227
231
228
- - In some cases, with a source file missing a final newline, coverage would
232
+ - In some cases, with a source file missing a final newline, coverage.py would
229
233
count statements incorrectly. This is now fixed, closing `issue 293`_.
230
234
231
235
- The status.dat file that HTML reports use to avoid re-creating files that
@@ -317,9 +321,9 @@ Version 3.7 --- 6 October 2013
317
321
- Running code with ``coverage run -m`` now behaves more like Python does,
318
322
setting sys.path properly, which fixes `issue 207`_ and `issue 242`_.
319
323
320
- - Coverage can now run .pyc files directly, closing `issue 264`_.
324
+ - Coverage.py can now run .pyc files directly, closing `issue 264`_.
321
325
322
- - Coverage properly supports .pyw files, fixing `issue 261`_.
326
+ - Coverage.py properly supports .pyw files, fixing `issue 261`_.
323
327
324
328
- Omitting files within a tree specified with the ``source`` option would
325
329
cause them to be incorrectly marked as unexecuted, as described in
@@ -335,9 +339,10 @@ Version 3.7 --- 6 October 2013
335
339
- Trying to create an XML report with no files to report on, would cause a
336
340
ZeroDivideError, but no longer does, fixing `issue 250`_.
337
341
338
- - When running a threaded program under the Python tracer, coverage no longer
339
- issues a spurious warning about the trace function changing: "Trace function
340
- changed, measurement is likely wrong: None." This fixes `issue 164`_.
342
+ - When running a threaded program under the Python tracer, coverage.py no
343
+ longer issues a spurious warning about the trace function changing: "Trace
344
+ function changed, measurement is likely wrong: None." This fixes `issue
345
+ 164`_.
341
346
342
347
- Static files necessary for HTML reports are found in system-installed places,
343
348
to ease OS-level packaging of coverage.py. Closes `issue 259`_.
@@ -470,8 +475,9 @@ Version 3.6b1 --- 28 November 2012
470
475
471
476
- Jython files now work with the ``--source`` option, fixing `issue 100`_.
472
477
473
- - Running coverage under a debugger is unlikely to work, but it shouldn't fail
474
- with "TypeError: 'NoneType' object is not iterable". Fixes `issue 201`_.
478
+ - Running coverage.py under a debugger is unlikely to work, but it shouldn't
479
+ fail with "TypeError: 'NoneType' object is not iterable". Fixes `issue
480
+ 201`_.
475
481
476
482
- On some Linux distributions, when installed with the OS package manager,
477
483
coverage.py would report its own code as part of the results. Now it won't,
@@ -553,7 +559,6 @@ Version 3.5.3 --- 29 September 2012
553
559
.. _tox: http://tox.readthedocs.org/
554
560
555
561
556
-
557
562
Version 3.5.2 --- 4 May 2012
558
563
----------------------------
559
564
@@ -615,10 +620,10 @@ Version 3.5.1 --- 23 September 2011
615
620
Version 3.5.1b1 --- 28 August 2011
616
621
----------------------------------
617
622
618
- - When combining data files from parallel runs, you can now instruct coverage
619
- about which directories are equivalent on different machines. A ``[paths]``
620
- section in the configuration file lists paths that are to be considered
621
- equivalent. Finishes `issue 17`_.
623
+ - When combining data files from parallel runs, you can now instruct
624
+ coverage.py about which directories are equivalent on different machines. A
625
+ ``[paths]`` section in the configuration file lists paths that are to be
626
+ considered equivalent. Finishes `issue 17`_.
622
627
623
628
- for-else constructs are understood better, and don't cause erroneous partial
624
629
branch warnings. Fixes `issue 122`_.
@@ -640,7 +645,7 @@ Version 3.5.1b1 --- 28 August 2011
640
645
641
646
- In order to help the core developers measure the test coverage of the
642
647
standard library, Brandon Rhodes devised an aggressive hack to trick Python
643
- into running some coverage code before anything else in the process.
648
+ into running some coverage.py code before anything else in the process.
644
649
See the coverage/fullcoverage directory if you are interested.
645
650
646
651
.. _issue 17: http://bitbucket.org/ned/coveragepy/issue/17/support-combining-coverage-data-from
@@ -828,7 +833,7 @@ Version 3.4b1 --- 21 August 2010
828
833
and parent processes. Use ``coverage run -p`` to get two data files that can
829
834
be combined with ``coverage combine``. Fixes `issue 56`_.
830
835
831
- - Coverage is now runnable as a module: ``python -m coverage``. Thanks,
836
+ - Coverage.py is now runnable as a module: ``python -m coverage``. Thanks,
832
837
Brett Cannon.
833
838
834
839
- When measuring code running in a virtualenv, most of the system library was
@@ -1049,8 +1054,8 @@ Version 3.0.1 --- 7 July 2009
1049
1054
raised. This is now fixed.
1050
1055
1051
1056
- The coverage.py code itself will now not be measured by coverage.py, and no
1052
- coverage modules will be mentioned in the nose --with-cover plug-in. Fixed
1053
- `issue 8`_.
1057
+ coverage.py modules will be mentioned in the nose --with-cover plug-in.
1058
+ Fixed `issue 8`_.
1054
1059
1055
1060
- When running source files, coverage.py now opens them in universal newline
1056
1061
mode just like Python does. This lets it run Windows files on Mac, for
@@ -1129,10 +1134,10 @@ Version 3.0b1 --- 7 March 2009
1129
1134
1130
1135
Major overhaul.
1131
1136
1132
- - Coverage is now a package rather than a module. Functionality has been split
1133
- into classes.
1137
+ - Coverage.py is now a package rather than a module. Functionality has been
1138
+ split into classes.
1134
1139
1135
- - The trace function is implemented in C for speed. Coverage runs are now
1140
+ - The trace function is implemented in C for speed. Coverage.py runs are now
1136
1141
much faster. Thanks to David Christian for productive micro-sprints and
1137
1142
other encouragement.
1138
1143
@@ -1144,7 +1149,7 @@ Major overhaul.
1144
1149
1145
1150
- The singleton coverage object is only created if the module-level functions
1146
1151
are used. This maintains the old interface while allowing better
1147
- programmatic use of Coverage.
1152
+ programmatic use of Coverage.py.
1148
1153
1149
1154
- The minimum supported Python version is 2.3.
1150
1155
@@ -1242,7 +1247,7 @@ Version 2.5 --- 4 December 2005
1242
1247
- Add a file argument to report so that reports can be captured to a different
1243
1248
destination.
1244
1249
1245
- - coverage .py can now measure itself.
1250
+ - Coverage .py can now measure itself.
1246
1251
1247
1252
- Adapted Greg Rogers' patch for using relative file names, and sorting and
1248
1253
omitting files to report on.
0 commit comments