diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-24 15:17:18 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-01-24 15:17:18 -0500 |
commit | 769eec1965c3abd8169f78d735e215c072b2e234 (patch) | |
tree | 64018a0c0a84f61ca59ddbf5a4388c5668a6afde | |
parent | 73e85b286c6cea875818b8e30d39f23599847172 (diff) | |
download | python-coveragepy-769eec1965c3abd8169f78d735e215c072b2e234.tar.gz |
Start of a plugin doc page
-rw-r--r-- | doc/index.rst | 2 | ||||
-rw-r--r-- | doc/plugin.rst | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/doc/index.rst b/doc/index.rst index 68780ea..467ac47 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -32,6 +32,7 @@ coverage.py :history: 20131005T210000, Updated for 3.7 :history: 20131212T213300, Updated for 3.7.1 :history: 20140924T073000, Updated for 4.0a1 +:history: 20150124T023900, Updated for 4.0a4 Coverage.py is a tool for measuring code coverage of Python programs. It @@ -166,6 +167,7 @@ More information branch subprocess api + plugin contributing trouble faq diff --git a/doc/plugin.rst b/doc/plugin.rst new file mode 100644 index 0000000..2cf1800 --- /dev/null +++ b/doc/plugin.rst @@ -0,0 +1,21 @@ +.. _plugin: + +================ +Coverage Plugins +================ + +:history: 20150124T143000, new page. + + +Plugins are cool. + +.. module:: coverage.plugin + +.. autoclass:: CoveragePlugin + :members: + +.. autoclass:: FileTracer + :members: + +.. autoclass:: FileReporter + :members: |