Replace --fulltrace with --full-trace in doc

Since 'py.test --help' shows --full-trace as an option (and not --fulltrace)
even though both forms are accepted I assume --full-trace is the preferred form
and should therefore be used in the documentation.
This commit is contained in:
Omar Kohl 2016-03-20 17:12:50 +01:00
parent 16e49d96d1
commit a341dddc74
2 changed files with 2 additions and 2 deletions

View File

@ -201,7 +201,7 @@ Example::
The ``__tracebackhide__`` setting influences ``pytest`` showing The ``__tracebackhide__`` setting influences ``pytest`` showing
of tracebacks: the ``checkconfig`` function will not be shown of tracebacks: the ``checkconfig`` function will not be shown
unless the ``--fulltrace`` command line option is specified. unless the ``--full-trace`` command line option is specified.
Let's run our little function:: Let's run our little function::
$ py.test -q test_checkconfig.py $ py.test -q test_checkconfig.py

View File

@ -22,7 +22,7 @@ command line options
(deprecated, use -r) (deprecated, use -r)
``--tb=style`` ``--tb=style``
traceback print mode (long/short/line/no). traceback print mode (long/short/line/no).
``--fulltrace`` ``--full-trace``
don't cut any tracebacks (default is to cut). don't cut any tracebacks (default is to cut).
``--fixtures`` ``--fixtures``
show available function arguments, sorted by plugin show available function arguments, sorted by plugin