Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.69 KB

plugins.rst

File metadata and controls

63 lines (50 loc) · 1.69 KB

Plugins for nose2

Built in and Loaded by Default

These plugins are loaded by default. To exclude one of these plugins from loading, add the plugin's module name to the exclude-plugins list in a config file's [unittest] section, or pass the plugin module with the --exclude-plugin argument on the command line. You can also pass plugin module names to exclude to a nose2.main.PluggableTestProgram using the excludePlugins keyword argument.

plugins/discovery plugins/functions plugins/generators plugins/parameters plugins/testcases plugins/testclasses plugins/result plugins/buffer plugins/debugger plugins/failfast plugins/logcapture

Built in but not Loaded by Default

These plugins are available as part of the nose2 package but are not loaded by default. To load one of these plugins, add the plugin module name to the plugins list in a config file's [unittest] section, or pass the plugin module with the --plugin argument on the command line. You can also pass plugin module names to a nose2.main.PluggableTestProgram using the plugins keyword argument.

plugins/junitxml plugins/attrib plugins/mp plugins/doctests plugins/outcomes plugins/collect plugins/testid plugins/prof plugins/printhooks

Third-party Plugins

If you are a plugin author, please add your plugin to the list on the nose2 wiki. If you are looking for more plugins, check that list!