diff options
-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: |