summaryrefslogtreecommitdiff
path: root/doc/en/plugins.rst
diff options
context:
space:
mode:
authorDave Hunt <dave.hunt@gmail.com>2016-06-21 16:16:57 +0200
committerDave Hunt <dave.hunt@gmail.com>2016-06-21 16:16:57 +0200
commitef9dd1496384cb703bf31a0788ea77bc4184faac (patch)
tree27b6f9583fd61900c88b6d4446a01dd5389834bc /doc/en/plugins.rst
parent54872e94b4f3437cb0052a83970133722e79eadd (diff)
downloadpytest-ef9dd1496384cb703bf31a0788ea77bc4184faac.tar.gz
Introduce pytest command as recommended entry point
Fixes #1629
Diffstat (limited to 'doc/en/plugins.rst')
-rw-r--r--doc/en/plugins.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/en/plugins.rst b/doc/en/plugins.rst
index 3db7f0f59..0d5ca7e05 100644
--- a/doc/en/plugins.rst
+++ b/doc/en/plugins.rst
@@ -59,7 +59,7 @@ Here is a little annotated list for some popular plugins:
a plugin to run javascript unittests in live browsers.
To see a complete list of all plugins with their latest testing
-status against different py.test and Python versions, please visit
+status against different pytest and Python versions, please visit
`plugincompat <http://plugincompat.herokuapp.com/>`_.
You may also discover more plugins through a `pytest- pypi.python.org search`_.
@@ -90,7 +90,7 @@ Finding out which plugins are active
If you want to find out which plugins are active in your
environment you can type::
- py.test --trace-config
+ pytest --trace-config
and will get an extended test header which shows activated plugins
and their names. It will also print local plugins aka
@@ -103,7 +103,7 @@ Deactivating / unregistering a plugin by name
You can prevent plugins from loading or unregister them::
- py.test -p no:NAME
+ pytest -p no:NAME
This means that any subsequent try to activate/load the named
plugin will not work.