Skip to content

Commit 3dc17f1

Browse files
authored
Merge pull request #9293 from hoefling/doc/extlinks-gh-user
2 parents 062d91a + 2f1096c commit 3dc17f1

File tree

6 files changed

+205
-370
lines changed

6 files changed

+205
-370
lines changed

doc/en/announce/release-2.9.0.rst

Lines changed: 15 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -45,29 +45,29 @@ The py.test Development Team
4545
**New Features**
4646

4747
* 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`).
4949

5050
* ``--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.
5252

5353
* 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.
5555

5656
* ``pytest.mark.xfail`` now has a ``strict`` option which makes ``XPASS``
5757
tests to fail the test suite, defaulting to ``False``. There's also a
5858
``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`).
6060

6161
* ``Parser.addini`` now supports options of type ``bool``. Thanks
62-
`@nicoddemus`_ for the PR.
62+
:user:`nicoddemus` for the PR.
6363

6464
* New ``ALLOW_BYTES`` doctest option strips ``b`` prefixes from byte strings
6565
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`).
6767

6868
* give a hint on KeyboardInterrupt to use the --fulltrace option to show the errors,
6969
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.
7171

7272
* catch IndexError exceptions when getting exception source location. This fixes
7373
pytest internal error for dynamically generated code (fixtures and tests)
@@ -91,19 +91,19 @@ The py.test Development Team
9191
`pylib <https://pylib.readthedocs.io/en/stable/>`_.
9292

9393
* ``pytest_enter_pdb`` now optionally receives the pytest config object.
94-
Thanks `@nicoddemus`_ for the PR.
94+
Thanks :user:`nicoddemus` for the PR.
9595

9696
* Removed code and documentation for Python 2.5 or lower versions,
9797
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`).
9999

100100
* Comparisons now always show up in full when ``CI`` or ``BUILD_NUMBER`` is
101101
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.
103103

104104
* ``--lf`` and ``--ff`` now support long names: ``--last-failed`` and
105105
``--failed-first`` respectively.
106-
Thanks `@MichaelAquilina`_ for the PR.
106+
Thanks :user:`MichaelAquilina` for the PR.
107107

108108
* Added expected exceptions to pytest.raises fail message
109109

@@ -115,36 +115,20 @@ The py.test Development Team
115115

116116
* The ``-s`` and ``-c`` options should now work under ``xdist``;
117117
``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`).
119119

120120
* 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.
122122

123123
* Fix formatting utf-8 explanation messages (:issue:`1379`).
124-
Thanks `@biern`_ for the PR.
124+
Thanks :user:`biern` for the PR.
125125

126126
* Fix `traceback style docs`_ to describe all of the available options
127127
(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.
129129

130130
* Fix (:issue:`1422`): junit record_xml_property doesn't allow multiple records
131131
with same name.
132132

133133

134134
.. _`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

doc/en/announce/release-2.9.1.rst

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,26 +37,21 @@ The py.test Development Team
3737
**Bug Fixes**
3838

3939
* Improve error message when a plugin fails to load.
40-
Thanks `@nicoddemus`_ for the PR.
40+
Thanks :user:`nicoddemus` for the PR.
4141

4242
* Fix (:issue:`1178`):
4343
``pytest.fail`` with non-ascii characters raises an internal pytest error.
44-
Thanks `@nicoddemus`_ for the PR.
44+
Thanks :user:`nicoddemus` for the PR.
4545

4646
* Fix (:issue:`469`): junit parses report.nodeid incorrectly, when params IDs
47-
contain ``::``. Thanks `@tomviner`_ for the PR (:pull:`1431`).
47+
contain ``::``. Thanks :user:`tomviner` for the PR (:pull:`1431`).
4848

4949
* Fix (:issue:`578`): SyntaxErrors
5050
containing non-ascii lines at the point of failure generated an internal
5151
py.test error.
52-
Thanks `@asottile`_ for the report and `@nicoddemus`_ for the PR.
52+
Thanks :user:`asottile` for the report and :user:`nicoddemus` for the PR.
5353

5454
* Fix (:issue:`1437`): When passing in a bytestring regex pattern to parameterize
5555
attempt to decode it as utf-8 ignoring errors.
5656

5757
* Fix (:issue:`649`): parametrized test nodes cannot be specified to run on the command line.
58-
59-
60-
.. _@asottile: https://github.com/asottile
61-
.. _@nicoddemus: https://github.com/nicoddemus
62-
.. _@tomviner: https://github.com/tomviner

doc/en/announce/release-2.9.2.rst

Lines changed: 6 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -40,35 +40,26 @@ The py.test Development Team
4040
**Bug Fixes**
4141

4242
* fix :issue:`510`: skip tests where one parameterize dimension was empty
43-
thanks Alex Stapleton for the Report and `@RonnyPfannschmidt`_ for the PR
43+
thanks Alex Stapleton for the Report and :user:`RonnyPfannschmidt` for the PR
4444

4545
* Fix Xfail does not work with condition keyword argument.
46-
Thanks `@astraw38`_ for reporting the issue (:issue:`1496`) and `@tomviner`_
46+
Thanks :user:`astraw38` for reporting the issue (:issue:`1496`) and :user:`tomviner`
4747
for PR the (:pull:`1524`).
4848

4949
* Fix win32 path issue when putting custom config file with absolute path
5050
in ``pytest.main("-c your_absolute_path")``.
5151

5252
* Fix maximum recursion depth detection when raised error class is not aware
5353
of unicode/encoded bytes.
54-
Thanks `@prusse-martin`_ for the PR (:pull:`1506`).
54+
Thanks :user:`prusse-martin` for the PR (:pull:`1506`).
5555

5656
* Fix ``pytest.mark.skip`` mark when used in strict mode.
57-
Thanks `@pquentin`_ for the PR and `@RonnyPfannschmidt`_ for
57+
Thanks :user:`pquentin` for the PR and :user:`RonnyPfannschmidt` for
5858
showing how to fix the bug.
5959

6060
* Minor improvements and fixes to the documentation.
61-
Thanks `@omarkohl`_ for the PR.
61+
Thanks :user:`omarkohl` for the PR.
6262

6363
* Fix ``--fixtures`` to show all fixture definitions as opposed to just
6464
one per fixture name.
65-
Thanks to `@hackebrot`_ for the PR.
66-
67-
68-
.. _@astraw38: https://github.com/astraw38
69-
.. _@hackebrot: https://github.com/hackebrot
70-
.. _@omarkohl: https://github.com/omarkohl
71-
.. _@pquentin: https://github.com/pquentin
72-
.. _@prusse-martin: https://github.com/prusse-martin
73-
.. _@RonnyPfannschmidt: https://github.com/RonnyPfannschmidt
74-
.. _@tomviner: https://github.com/tomviner
65+
Thanks to :user:`hackebrot` for the PR.

0 commit comments

Comments
 (0)