You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
======================= 1 failed, 2 passed in 0.12s ========================
81
81
82
+
.. note::
83
+
84
+
Parameter values are passed as-is to tests (no copy whatsoever).
85
+
86
+
For example, if you pass a list or a dict as a parameter value, and
87
+
the test case code mutates it, the mutations will be reflected in subsequent
88
+
test case calls.
89
+
82
90
.. note::
83
91
84
92
pytest by default escapes any non-ascii characters used in unicode strings
85
93
for the parametrization because it has several downsides.
86
-
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``:
94
+
If however you would like to use unicode strings in parametrization
95
+
and see them in the terminal as is (non-escaped), use this option
0 commit comments