Add docs on how to disable cache provider

This commit is contained in:
Bruno Oliveira 2015-09-23 19:15:44 -03:00
parent acb6b186f2
commit b09d3724a0
1 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,16 @@ cache: working with cross-testrun state
is compatible regarding command line options and API usage except that you
can only store/receive data between test runs that is json-serializable.
If for any reason you want to disable this plugin, you can do so by
adding ``-p no:cacheprovider`` to the command-line, or more permanently
to your ``pytest.ini`` file:
.. code-block:: ini
[pytest]
addopts = -p no:cacheprovider
Usage
---------