[svn r63346] update docs

--HG--
branch : trunk
This commit is contained in:
hpk 2009-03-26 12:15:14 +01:00
parent 8745b9595e
commit 9b5e15bebe
2 changed files with 28 additions and 16 deletions

View File

@ -1,28 +1,40 @@
Many of py.test's features are implemented as a plugin. Many of py.test's features are implemented as a plugin.
Available plugins Default plugins
----------------------- -----------------------
py.test has a number of default plugins. You can see which You can find the source code of all default plugins in
ones by specifying ``--trace=config``. http://codespeak.net/svn/py/trunk/py/test/plugin/
* adding reporting facilities, examples: plugins that add reporting asepcts
pytest_terminal: default reporter for writing info to terminals +++++++++++++++++++++++++++++++++++++++
pytest_resultlog: log test results in machine-readable form to a file
pytest_eventlog: log all internal pytest events to a file
* marking and reporting test specially pytest_terminal: default reporter for writing info to terminals
pytest_xfail: "expected to fail" test marker
* funcargs for advanced pytest_resultlog: log test results in machine-readable form to a file
pytest_tmpdir: provide temporary directories to test functions
pytest_plugintester: generic apichecks, support for functional plugin tests
pytest_pytester: support for testing py.test runs
* extending test execution, e.g. pytest_eventlog: log all internal pytest events to a file
pytest_apigen: tracing values of function/method calls when running tests
plugins for adding new test types
++++++++++++++++++++++++++++++++++++++++++++++
pytest_unittest: run traditional unittest TestCase instances
pytest_doctest: run doctests in python modules or .txt files
pytest_restdoc: provide RestructuredText syntax and link checking
plugins for python test functions
++++++++++++++++++++++++++++++++++++++++++++++
pytest_xfail: provides "expected to fail" test marker
pytest_tmpdir: provide temporary directories to test functions
pytest_plugintester: generic plugin apichecks, support for functional plugin tests
pytest_apigen: tracing values of function/method calls when running tests
Loading plugins and specifying dependencies Loading plugins and specifying dependencies
--------------------------------------------------------- ---------------------------------------------------------

View File

@ -1,7 +1,7 @@
""" """
setup file for 'py' package based on: setup file for 'py' package based on:
https://codespeak.net/svn/py/trunk, revision=63254 https://codespeak.net/svn/py/trunk, revision=63342
autogenerated by gensetup.py autogenerated by gensetup.py
""" """