Skip to content

Commit 16e49d9

Browse files
committed
Replace --traceconfig with --trace-config in doc
Since 'py.test --help' shows --trace-config as an option (and not --traceconfig) even though both forms are accepted I assume --trace-config is the preferred form and should therefore be used in the documentation.
1 parent ec62a3c commit 16e49d9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/en/plugins.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Finding out which plugins are active
9090
If you want to find out which plugins are active in your
9191
environment you can type::
9292

93-
py.test --traceconfig
93+
py.test --trace-config
9494

9595
and will get an extended test header which shows activated plugins
9696
and their names. It will also print local plugins aka

doc/en/test/attic.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ but note that project specific settings will be considered
2121
first. There is a flag that helps you debugging your
2222
conftest.py configurations::
2323

24-
py.test --traceconfig
24+
py.test --trace-config
2525

2626

2727
customizing the collecting and running process

doc/en/test/plugin/helpconfig.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ command line options
1616
display py lib version and import information.
1717
``-p name``
1818
early-load given plugin (multi-allowed).
19-
``--traceconfig``
19+
``--trace-config``
2020
trace considerations of conftest.py files.
2121
``--nomagic``
2222
don't reinterpret asserts, no traceback cutting.

doc/en/writing_plugins.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ the plugin manager like this:
194194
plugin = config.pluginmanager.getplugin("name_of_plugin")
195195

196196
If you want to look at the names of existing plugins, use
197-
the ``--traceconfig`` option.
197+
the ``--trace-config`` option.
198198

199199
Testing plugins
200200
---------------

0 commit comments

Comments
 (0)