@@ -45,29 +45,29 @@ The py.test Development Team
45
45
**New Features **
46
46
47
47
* New ``pytest.mark.skip `` mark, which unconditionally skips marked tests.
48
- Thanks ` @ MichaelAquilina `_ for the complete PR (:pull: `1040 `).
48
+ Thanks :user: ` MichaelAquilina ` for the complete PR (:pull: `1040 `).
49
49
50
50
* ``--doctest-glob `` may now be passed multiple times in the command-line.
51
- Thanks ` @ jab `_ and ` @ nicoddemus `_ for the PR.
51
+ Thanks :user: ` jab ` and :user: ` nicoddemus ` for the PR.
52
52
53
53
* New ``-rp `` and ``-rP `` reporting options give the summary and full output
54
- of passing tests, respectively. Thanks to ` @ codewarrior0 `_ for the PR.
54
+ of passing tests, respectively. Thanks to :user: ` codewarrior0 ` for the PR.
55
55
56
56
* ``pytest.mark.xfail `` now has a ``strict `` option which makes ``XPASS ``
57
57
tests to fail the test suite, defaulting to ``False ``. There's also a
58
58
``xfail_strict `` ini option that can be used to configure it project-wise.
59
- Thanks ` @ rabbbit `_ for the request and ` @ nicoddemus `_ for the PR (:issue: `1355 `).
59
+ Thanks :user: ` rabbbit ` for the request and :user: ` nicoddemus ` for the PR (:issue: `1355 `).
60
60
61
61
* ``Parser.addini `` now supports options of type ``bool ``. Thanks
62
- ` @ nicoddemus `_ for the PR.
62
+ :user: ` nicoddemus ` for the PR.
63
63
64
64
* New ``ALLOW_BYTES `` doctest option strips ``b `` prefixes from byte strings
65
65
in doctest output (similar to ``ALLOW_UNICODE ``).
66
- Thanks ` @ jaraco `_ for the request and ` @ nicoddemus `_ for the PR (:issue: `1287 `).
66
+ Thanks :user: ` jaraco ` for the request and :user: ` nicoddemus ` for the PR (:issue: `1287 `).
67
67
68
68
* give a hint on KeyboardInterrupt to use the --fulltrace option to show the errors,
69
69
this fixes :issue: `1366 `.
70
- Thanks to ` @ hpk42 `_ for the report and ` @ RonnyPfannschmidt `_ for the PR.
70
+ Thanks to :user: ` hpk42 ` for the report and :user: ` RonnyPfannschmidt ` for the PR.
71
71
72
72
* catch IndexError exceptions when getting exception source location. This fixes
73
73
pytest internal error for dynamically generated code (fixtures and tests)
@@ -91,19 +91,19 @@ The py.test Development Team
91
91
`pylib <https://pylib.readthedocs.io/en/stable/ >`_.
92
92
93
93
* ``pytest_enter_pdb `` now optionally receives the pytest config object.
94
- Thanks ` @ nicoddemus `_ for the PR.
94
+ Thanks :user: ` nicoddemus ` for the PR.
95
95
96
96
* Removed code and documentation for Python 2.5 or lower versions,
97
97
including removal of the obsolete ``_pytest.assertion.oldinterpret `` module.
98
- Thanks ` @ nicoddemus `_ for the PR (:issue: `1226 `).
98
+ Thanks :user: ` nicoddemus ` for the PR (:issue: `1226 `).
99
99
100
100
* Comparisons now always show up in full when ``CI `` or ``BUILD_NUMBER `` is
101
101
found in the environment, even when -vv isn't used.
102
- Thanks ` @ The-Compiler `_ for the PR.
102
+ Thanks :user: ` The-Compiler ` for the PR.
103
103
104
104
* ``--lf `` and ``--ff `` now support long names: ``--last-failed `` and
105
105
``--failed-first `` respectively.
106
- Thanks ` @ MichaelAquilina `_ for the PR.
106
+ Thanks :user: ` MichaelAquilina ` for the PR.
107
107
108
108
* Added expected exceptions to pytest.raises fail message
109
109
@@ -115,36 +115,20 @@ The py.test Development Team
115
115
116
116
* The ``-s `` and ``-c `` options should now work under ``xdist ``;
117
117
``Config.fromdictargs `` now represents its input much more faithfully.
118
- Thanks to ` @ bukzor `_ for the complete PR (:issue: `680 `).
118
+ Thanks to :user: ` bukzor ` for the complete PR (:issue: `680 `).
119
119
120
120
* Fix (:issue: `1290 `): support Python 3.5's ``@ `` operator in assertion rewriting.
121
- Thanks ` @ Shinkenjoe `_ for report with test case and ` @ tomviner `_ for the PR.
121
+ Thanks :user: ` Shinkenjoe ` for report with test case and :user: ` tomviner ` for the PR.
122
122
123
123
* Fix formatting utf-8 explanation messages (:issue: `1379 `).
124
- Thanks ` @ biern `_ for the PR.
124
+ Thanks :user: ` biern ` for the PR.
125
125
126
126
* Fix `traceback style docs `_ to describe all of the available options
127
127
(auto/long/short/line/native/no), with ``auto `` being the default since v2.6.
128
- Thanks ` @ hackebrot `_ for the PR.
128
+ Thanks :user: ` hackebrot ` for the PR.
129
129
130
130
* Fix (:issue: `1422 `): junit record_xml_property doesn't allow multiple records
131
131
with same name.
132
132
133
133
134
134
.. _`traceback style docs` : https://pytest.org/en/stable/how-to/output.html#modifying-python-traceback-printing
135
-
136
-
137
- .. _@biern : https://github.com/biern
138
- .. _@MichaelAquilina : https://github.com/MichaelAquilina
139
- .. _@bukzor : https://github.com/bukzor
140
- .. _@hpk42 : https://github.com/hpk42
141
- .. _@nicoddemus : https://github.com/nicoddemus
142
- .. _@jab : https://github.com/jab
143
- .. _@codewarrior0 : https://github.com/codewarrior0
144
- .. _@jaraco : https://github.com/jaraco
145
- .. _@The-Compiler : https://github.com/The-Compiler
146
- .. _@Shinkenjoe : https://github.com/Shinkenjoe
147
- .. _@tomviner : https://github.com/tomviner
148
- .. _@RonnyPfannschmidt : https://github.com/RonnyPfannschmidt
149
- .. _@rabbbit : https://github.com/rabbbit
150
- .. _@hackebrot : https://github.com/hackebrot
0 commit comments