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 | 8fb9e6cd700c4b84d67ddc2b996493f4d8ea879a (patch) | |
tree | c2cd9c94e68632215ede624d278b0ec158a5ce9e | |
parent | 32b63a46df6db3c74beb4f2991001143207fa8b7 (diff) | |
download | python-coveragepy-git-8fb9e6cd700c4b84d67ddc2b996493f4d8ea879a.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 68780ea5..467ac478 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 00000000..2cf18004 --- /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: |