From 3d9e68ecfd05dff5efd62627cdbb858f9bc63ec7 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 28 Mar 2019 00:05:33 +0900 Subject: [PATCH] Update doc/en/parametrize.rst --- doc/en/parametrize.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/en/parametrize.rst b/doc/en/parametrize.rst index 912ae1898..70a35ac44 100644 --- a/doc/en/parametrize.rst +++ b/doc/en/parametrize.rst @@ -85,14 +85,14 @@ them in turn: pytest by default escapes any non-ascii characters used in unicode strings for the parametrization because it has several downsides. - If however you would like to use unicode strings in parametrization, use this option in your ``pytest.ini``: + If however you would like to use unicode strings in parametrization and see them in the terminal as is (non-escaped), use this option in your ``pytest.ini``: .. code-block:: ini [pytest] disable_test_id_escaping_and_forfeit_all_rights_to_community_support = True - to disable this behavior, but keep in mind that this might cause unwanted side effects and + Keep in mind however that this might cause unwanted side effects and even bugs depending on the OS used and plugins currently installed, so use it at your own risk.