1 Metadata-Version: 1.0 |
1 Metadata-Version: 1.0 |
2 Name: coverage |
2 Name: coverage |
3 Version: 3.2 |
3 Version: 3.7.1 |
4 Summary: Code coverage measurement for Python |
4 Summary: Code coverage measurement for Python |
5 Home-page: http://nedbatchelder.com/code/coverage |
5 Home-page: http://nedbatchelder.com/code/coverage |
6 Author: Ned Batchelder |
6 Author: Ned Batchelder and others |
7 Author-email: ned@nedbatchelder.com |
7 Author-email: ned@nedbatchelder.com |
8 License: BSD |
8 License: BSD |
9 Description: Coverage.py measures code coverage, typically during test execution. It uses |
9 Description: Coverage.py measures code coverage, typically during test execution. It uses |
10 the code analysis tools and tracing hooks provided in the Python standard |
10 the code analysis tools and tracing hooks provided in the Python standard |
11 library to determine which lines are executable, and which have been executed. |
11 library to determine which lines are executable, and which have been executed. |
12 |
12 |
13 Coverage.py runs on Pythons 2.3 through 3.1. |
13 Coverage.py runs on Pythons 2.3 through 3.3, and PyPy 1.9. |
14 |
14 |
15 Documentation is at `nedbatchelder.com <http://nedbatchelder.com/code/coverage>`_. Code repository and issue |
15 Documentation is at `nedbatchelder.com <http://nedbatchelder.com/code/coverage>`_. Code repository and issue |
16 tracker are at `bitbucket.org <http://bitbucket.org/ned/coveragepy>`_. |
16 tracker are on `Bitbucket <http://bitbucket.org/ned/coveragepy>`_, with a |
|
17 mirrored repo on `Github <https://github.com/nedbat/coveragepy>`_. |
|
18 |
|
19 New in 3.7: ``--debug``, and 12 bugs closed. |
|
20 |
|
21 New in 3.6: ``--fail-under``, and >20 bugs closed. |
|
22 |
|
23 New in 3.5: Branch coverage exclusions, keyboard shortcuts in HTML report. |
|
24 |
|
25 New in 3.4: Better control over source to measure, and unexecuted files |
|
26 can be reported. |
|
27 |
|
28 New in 3.3: .coveragerc files. |
17 |
29 |
18 New in 3.2: Branch coverage! |
30 New in 3.2: Branch coverage! |
19 |
|
20 Keywords: code coverage testing |
31 Keywords: code coverage testing |
21 Platform: UNKNOWN |
32 Platform: UNKNOWN |
22 Classifier: Environment :: Console |
33 Classifier: Environment :: Console |
23 Classifier: Intended Audience :: Developers |
34 Classifier: Intended Audience :: Developers |
24 Classifier: License :: OSI Approved :: BSD License |
35 Classifier: License :: OSI Approved :: BSD License |